From 7b8e6bd6eda94b213c804954c6294e0d01c941f2 Mon Sep 17 00:00:00 2001 From: nagev Date: Wed, 11 Dec 2013 15:38:35 +0000 Subject: [PATCH 1/2] Update AUTHORS.txt --- AUTHORS.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index 46efd64..26f41e4 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -36,6 +36,7 @@ Sheng Yun (@ShengYun) Yann Thomas-Gérard (@inside) Colin Su (@littleq0903) Justin M. Keyes (@justinmk) +nagev (@np1) @something are github user names. From e324a34c69f758daff0cf8c2c6162f230badeaf0 Mon Sep 17 00:00:00 2001 From: nagev Date: Wed, 11 Dec 2013 15:43:18 +0000 Subject: [PATCH 2/2] Update jedi-vim.txt correction in help text for jedi#goto_definitions_command --- doc/jedi-vim.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/jedi-vim.txt b/doc/jedi-vim.txt index 4a85614..08daf04 100644 --- a/doc/jedi-vim.txt +++ b/doc/jedi-vim.txt @@ -22,7 +22,7 @@ Contents *jedi-vim-contents* 5. Mappings |jedi-vim-keybindings| 5.1. Start completion |g:jedi#completions_command| 5.2. Go to assignment |g:jedi#goto_assignments_command| - 5.3. Get original definition |g:jedi#get_definitions_command| + 5.3. Get original definition |g:jedi#goto_definitions_command| 5.4. Show documentation |g:jedi#documentation_command| 5.5. Rename variables |g:jedi#rename_command| 5.6. Show name usages |g:jedi#usages_command| @@ -238,9 +238,9 @@ following module structure: > def bar(): pass -The `jedi#goto_definitions()` function will take you to the "from file2 import foo" -statement in file1.py, while the `jedi#goto_definitions()` function will take -you all the way to the "def bar():" line in file3.py. +The `jedi#goto_assignments()` function will take you to the "from file2 import +foo" statement in file1.py, while the `jedi#goto_definitions()` function will +take you all the way to the "def bar():" line in file3.py. ------------------------------------------------------------------------------ 5.4. `g:jedi#documentation_command` *g:jedi#documentation_command*