1
0
forked from VimPlug/jedi

tabs are now the default, buffers are not practical for renaming

This commit is contained in:
David Halter
2012-09-11 01:29:37 +02:00
parent dc1d660154
commit 2ceba101df
2 changed files with 3 additions and 3 deletions

View File

@@ -175,10 +175,10 @@ Showing the pydoc is by default on `K` If you want to change that:
let g:jedi#pydoc = "K"
If you are a person who likes to use VIM-tabs not buffers, you might want to
If you are a person who likes to use VIM-buffers not tabs, you might want to
put that in your `.vimrc`:
let g:jedi#use_tabs_not_buffers = 1
let g:jedi#use_tabs_not_buffers = 0
Jedi automatically starts the completion, if you type a dot, e.g. `str.`, if
you don't want this:

View File

@@ -297,7 +297,7 @@ endfunc
" defaults for jedi-vim
if !exists("g:jedi#use_tabs_not_buffers ")
let g:jedi#use_tabs_not_buffers = 0
let g:jedi#use_tabs_not_buffers = 1
endif
if !exists("g:jedi#auto_initialization")
let g:jedi#auto_initialization = 1