forked from VimPlug/jedi
tabs are now the default, buffers are not practical for renaming
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user