Add g:jedi#use_tag_stack feature for jedi#goto()

This commit is contained in:
Jacob Niehus
2015-08-20 21:02:27 -07:00
parent 610cbcacb7
commit 4867831ad0
3 changed files with 34 additions and 6 deletions

View File

@@ -43,6 +43,7 @@ Contents *jedi-vim-contents*
6.11. use_splits_not_buffers |g:jedi#use_splits_not_buffers|
6.12. force_py_version |g:jedi#force_py_version|
6.13. smart_auto_mappings |g:jedi#smart_auto_mappings|
6.14. use_tag_stack |g:jedi#use_tag_stack|
7. Testing |jedi-vim-testing|
8. Contributing |jedi-vim-contributing|
9. License |jedi-vim-license|
@@ -506,6 +507,15 @@ This option can be disabled in the .vimrc:
Options: 0 or 1
Default: 1 (enabled by default)
------------------------------------------------------------------------------
6.14. `g:jedi#use_tag_stack` *g:jedi#use_tag_stack*
Write results of |jedi#goto| to a temporary file and use the *:tjump* command
to enable full *tagstack* functionality.
Options: 0 or 1
Default: 1 (enabled by default)
==============================================================================
7. Testing *jedi-vim-testing*