是否可以在TextMate中实现Python代码完成?

时间:2008-10-21 09:54:59

标签: python autocomplete text-editor textmate

PySmell似乎是一个很好的起点。

我认为它应该是可能的,PySmell的idehelper.py执行大多数复杂的事情,它应该只是给它当前行,提供完成(我不确定的位)然后用选定的行替换该行。

>>> import idehelper
>>> # The path is where my PYSMELLTAGS file is located:
>>> PYSMELLDICT = idehelper.findPYSMELLDICT("/Users/dbr/Desktop/pysmell/")
>>> options = idehelper.detectCompletionType("", "" 1, 2, "", PYSMELLDICT)
>>> completions = idehelper.findCompletions("proc", PYSMELLDICT, options)
>>> print completions
[{'dup': '1', 'menu': 'pysmell.pysmell', 'kind': 'f', 'word': 'process', 'abbr': 'process(argList, excluded, output, verbose=False)'}]

它永远不会是完美的,但它会非常有用(即使只是为了完成stdlib模块,它永远不会改变,所以你不必在每次添加函数时不断重新生成PYSMELLTAGS文件)


进展!我有完全基本的完成 - 几乎没有作品,但它很接近..

我跑了python pysmells.py /System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/*.py -O /Library/Python/2.5/site-packages/pysmell/PYSMELLTAGS

将以下内容放在TextMate包脚本中,设置“input:whole document”,“output:insert as text”,“activation:key equivalent:alt + esc”,“scope selector:source.python”

#!/usr/bin/env python

import os
import sys
from pysmell import idehelper

CUR_WORD = os.environ.get("TM_CURRENT_WORD")

cur_file = os.environ.get("TM_FILEPATH")
orig_source = sys.stdin.read()
line_no = int(os.environ.get("TM_LINE_NUMBER"))
cur_col = int(os.environ.get("TM_LINE_INDEX"))

# PYSMELLS is currently in site-packages/pysmell/
PYSMELLDICT = idehelper.findPYSMELLDICT("/Library/Python/2.5/site-packages/pysmell/blah")
options = idehelper.detectCompletionType(cur_file, orig_source, line_no, cur_col, "", PYSMELLDICT)
completions = idehelper.findCompletions(CUR_WORD, PYSMELLDICT, options)

if len(completions) > 0:
    new_word = completions[0]['word']
    new_word = new_word.replace(CUR_WORD, "", 1) # remove what user has already typed
    print new_word

然后我创建了一个新的python文档,键入“import urll”并点击alt + escape,然后将其完成为“import urllib”!

正如我所说,这完全是一项正在进行的工作,所以不要使用它。


上次更新:

orestis已将其集成到PySmell项目的代码中!任何进一步的摆弄都会发生on github

4 个答案:

答案 0 :(得分:9)

编辑:我实际上已经将您的代码放在上面并集成到命令中。它将正确显示完成列表供您选择。

你可以在这里抓住它:http://github.com/orestis/pysmell/tree/master(点击下载并执行python setup.py安装)。这很粗糙但是有效。 - 请在http://code.google.com/p/pysmell/

上报告任何错误

-

嗨,我是PySmell的开发者。我也使用Mac,所以如果你能给我发一封电子邮件(联系信息在源代码中),你的进展到目前为止,我可以尝试整合它:)

哦,顺便说一句,它被称为PySmell - 没有尾随的's':)

答案 1 :(得分:3)

这不是您正在寻找的,但它可能能让您入门:

Using TextMate with Django

它们似乎有点Django特定,但一些片段可能有助于满足您的需求。您也可以使用PySmells构建它。

答案 2 :(得分:1)

这不完美,但你可以尝试一下:http://mtod.org/tempy

答案 3 :(得分:0)

在TextMate中,PHP以硬编码的函数名称形式进行简单的自动完成。听起来像PHP一样丑陋,但在实践中它足够有用。