mirror of
https://github.com/davidhalter/jedi.git
synced 2026-05-16 13:34:56 +08:00
tabs are now the default, buffers are not practical for renaming
This commit is contained in:
+2
-2
@@ -175,10 +175,10 @@ Showing the pydoc is by default on `K` If you want to change that:
|
|||||||
|
|
||||||
let g:jedi#pydoc = "K"
|
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`:
|
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
|
Jedi automatically starts the completion, if you type a dot, e.g. `str.`, if
|
||||||
you don't want this:
|
you don't want this:
|
||||||
|
|||||||
+1
-1
@@ -297,7 +297,7 @@ endfunc
|
|||||||
|
|
||||||
" defaults for jedi-vim
|
" defaults for jedi-vim
|
||||||
if !exists("g:jedi#use_tabs_not_buffers ")
|
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
|
endif
|
||||||
if !exists("g:jedi#auto_initialization")
|
if !exists("g:jedi#auto_initialization")
|
||||||
let g:jedi#auto_initialization = 1
|
let g:jedi#auto_initialization = 1
|
||||||
|
|||||||
Reference in New Issue
Block a user