11

设置

在我的.vimrc我有以下几行:

" .vimrc
let g:virtualenv_directory="/Users/Kit/Development/virtualenv"

然后在~/.vim/ftplugin/python/virtualenv.vim我有这些:

py << EOF
import os.path
import sys
import vim
if 'VIRTUAL_ENV' in os.environ:
    project_base_dir = os.environ['VIRTUAL_ENV']
    sys.path.insert(0, project_base_dir)
    activate_this = os.path.join(project_base_dir, 'bin/activate_this.py')
    execfile(activate_this, dict(__file__=activate_this))
    print "virtualenv in os.environ!"
EOF
VirtualEnvActivate my-virtualenv-python-2.7

~/.vim/ftplugin/python/virtualenv.vim我有这些 SuperTab 设置:

setlocal omnifunc=pythoncomplete#Complete
setlocal completeopt=menuone,longest,preview
let g:SuperTabDefaultCompletionType="<c-x><c-]>"

在我一直工作的工作目录中,我执行了以下 bash 命令来TAGS为我的所有文件生成一个.py文件

find . -name '*.py' -type f -print0 | xargs -0 etags -l python

问题

例如,我有一个main.py里面有一个对象app,这样下面的脚本就可以正常工作:

import main
new_app = main.app() # works totally fine Python-wise

例如,如果我编写了一些新代码并尝试使用 SuperTab omnicompletion:

import main
new_new_app = main.<Tab>

这就是我得到的:

new_new_app = mainself.

如果我按Tab几次:

new_new_app = mainselfselfselfself.

什么对我有用

但是,如果我执行以下操作:

new_new_app = main.a<Tab>

我得到了一个完整的a..对象列表,其中包括那些不属于 module的对象main

我想要的是

如果我在中设置以下内容.vimrc

let g:SuperTabDefaultCompletionType="context"

然后,我使用标准 Python 库中的一个模块:

import sys
sys.<Tab> # This will still result in sysselfselfself.
sys.p<Tab> # This will result in the correct list of `sys` members beginning with `p`

但该"context"设置不适用于我自己的模块:

new_new_app = main.a<Tab>
# Will say at the bottom: Omni completion (^O^N^P) Pattern not found

问题

我应该如何设置omnicompletion 和SuperTab 以便它对我自己的模块和标准库模块一样起作用?以及消除selfselfself.烦恼?

4

1 回答 1

5

正如您所指出的,这是由 snipmate 引起的:https ://github.com/garbas/vim-snipmate/issues/65

我还提出了一个解决方案: https ://github.com/garbas/vim-snipmate/pull/84

它没有被接受,因为 snipmate 不应该是上下文敏感的。

有两种解决方案:

  1. 拿我的 snipmate 叉子:

    https://github.com/davidhalter/vim-snipmate

    这可能不是最好的主意,因为它只是我的分叉,我没有积极维护它。

  2. 分叉https://github.com/honza/snipmate-snippets并删除点的映射(使用点将不再可能,以完成自我)。

于 2012-04-07T23:10:10.623 回答