关闭Jedi-Vim中的所有自动代码完成

5
我正在尝试在vim中使用python-jedi,但目前它完全无法使用,因为它会在奇怪的时间尝试代码补全。
我添加了以下行:
 let g:jedi#popup_on_dot = 0

我已经添加了一行代码到我的vimrc文件中,这确实停止了“.”的自动补全,但当我尝试在以下代码中逗号后面添加空格时:
upper_blue = np.array([130,255,255])

自动完成似乎总是在方括号内弹出,但它与数组无关。
我已经安装了Pymode,但我确实关闭了Rope功能...我承认我不知道如何完全关闭Pymode。
VimRC:
    " Better command-line completion
set wildmenu

" Show partial commands in the last line of the screen
set showcmd

" Highlight searches (use <C-L> to temporarily turn off highlighting; see the
" mapping of <C-L> below)
set hlsearch

" Modelines have historically been a source of security vulnerabilities. As
" such, it may be a good idea to disable them and use the securemodelines
" script, <http://www.vim.org/scripts/script.php?script_id=1876>.
" set nomodeline


"------------------------------------------------------------
" Usability options {{{1
"
" These are options that users frequently set in their .vimrc. Some of them
" change Vim's behaviour in ways which deviate from the true Vi way, but
" which are considered to add usability. Which, if any, of these options to
" use is very much a personal preference, but they are harmless.

" Use case insensitive search, except when using capital letters
set ignorecase
set smartcase

" Allow backspacing over autoindent, line breaks and start of insert action
set backspace=indent,eol,start

" When opening a new line and no filetype-specific indenting is enabled, keep
" the same indent as the line you're currently on. Useful for READMEs, etc.
set autoindent

" Stop certain movements from always going to the first character of a line.
" While this behaviour deviates from that of Vi, it does what most users
" coming from other editors would expect.
set nostartofline

" Display the cursor position on the last line of the screen or in the status
" line of a window
set ruler

" Always display the status line, even if only one window is displayed
set laststatus=2

" Instead of failing a command because of unsaved changes, instead raise a
" dialogue asking if you wish to save changed files.
set confirm

" Use visual bell instead of beeping when doing something wrong
set visualbell

" And reset the terminal code for the visual bell. If visualbell is set, and
" this line is also included, vim will neither flash nor beep. If visualbell
" is unset, this does nothing.
set t_vb=

" Enable use of the mouse for all modes
set mouse=a

" Set the command window height to 2 lines, to avoid many cases of having to
" "press <Enter> to continue"
set cmdheight=2

" Display line numbers on the left
set number

" Quickly time out on keycodes, but never time out on mappings
set notimeout ttimeout ttimeoutlen=200

" Use <F11> to toggle between 'paste' and 'nopaste'
set pastetoggle=<F11>


"------------------------------------------------------------
" Indentation options {{{1
"
" Indentation settings according to personal preference.

" Indentation settings for using 2 spaces instead of tabs.
" Do not change 'tabstop' from its default value of 8 with this setup.
set shiftwidth=2
set softtabstop=2
set expandtab

" Indentation settings for using hard tabs for indent. Display tabs as
" two characters wide.
"set shiftwidth=2
"set tabstop=2


"------------------------------------------------------------
" Mappings {{{1
"
" Useful mappings

" Map Y to act like D and C, i.e. to yank until EOL, rather than act as yy,
" which is the default
map Y y$
map <F2> :NERDTreeToggle<CR>

" Map <C-L> (redraw screen) to also turn off search highlighting until the
" next search
nnoremap <C-L> :nohl<CR><C-L>

execute pathogen#infect()

au FileType html compiler html
au QuickFixCmdPost make cwindow
"------------------------------------------------------------

"----Python Vim---"
"let g:pymode_rope = 0
" Documentation
"let g:pymode_doc = 1
"let g:pymode_doc_key = 'K'
"
" "Linting
"let g:pymode_lint = 1
"let g:pymode_lint_checker = "pyflakes,pep8"
" " Auto check on save
"let g:pymode_lint_write = 1
"
" " Support virtualenv
"let g:pymode_virtualenv = 0
"
" " Enable breakpoints plugin
"let g:pymode_breakpoint = 1
"let g:pymode_breakpoint_key = '<leader>b'
"
" " syntax highlighting
"let g:pymode_syntax = 0
"let g:pymode_syntax_all = 0
"let g:pymode_syntax_indent_errors = g:pymode_syntax_all
"let g:pymode_syntax_space_errors = g:pymode_syntax_all



set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdtree'
" Bundle 'klen/python-mode'
Plugin 'davidhalter/jedi-vim'
Plugin 'altercation/vim-colors-solarized'
call vundle#end()            " required
filetype plugin indent on    " required

"jedi"
let g:jedi#popup_on_dot = 0
let g:jedi#auto_initialization = 1


"---PowerLine--"
set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ 9
set laststatus=2

"--Look and feel--"
if has('gui_running')
    set background=light
    else
        set background=dark
        endif
3个回答

5

使用此方法:

let g:jedi#completions_enabled = 0

1
我很确定jedi-vim只有在输入.时才会启动自动完成。其它情况可能是另一个插件(例如supertab或者autocomplpop)的问题。
jedi-vim也使用CtrlSpace组合键。但这不应该引起任何问题(除非你恰好使用该命令)。

已发布vimrc并卸载了pymode,仍然遇到相同的问题 :( - chrispepper1989
目前我没有安装 Supertab 或 Autocomplpop。 - chrispepper1989
说实话,我不认为jedi-vim是问题所在。你是第一个注意到这个问题的人,而且只有一个触发器会导致自动完成:点号。在逗号后添加空格可能会触发调用签名窗口,但那与自动完成窗口不同。 - Dave Halter
可能是签名窗口,我能把它关掉吗? - chrispepper1989
3
当然可以!let g:jedi#show_call_signatures = "0"。如果您有兴趣,您也可以使用值2以不同的方式显示它(请阅读文档)。 - Dave Halter

0

jedi-vim readme中所解释的那样,当有一个点时禁用自动补全应该就足够了。我看到OP已经在他的~/.vimrc(问题中)中设置了这个。

let g:jedi#popup_on_dot = 0

这个答案提到了auto-complete手册,其中有几种关闭自动完成的策略和多种按键组合来重新启用它。

更新:这部分回答更与启用jedi-vim时如何复制粘贴相关。

此外,Jedi-vim 问题211建议使用vim的pastetoggle模式。Vimwiki的带自动缩进的粘贴页面介绍了如何为pastetoggle设置快捷方式。甚至有一个名为vim-bracketed-paste的插件,可以在“支持括号粘贴模式的xterm兼容终端仿真器”中自动检测粘贴。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接