From bbe2861fa1eb157247eeacda626355bd0cc03451 Mon Sep 17 00:00:00 2001 From: justincheevers Date: Thu, 27 Feb 2014 15:32:49 -0800 Subject: [PATCH 1/3] Add example installation command It's easier if an example installation command is there for you. --- AUTHORS.txt | 1 + README.rst | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index bbaaae2..21a12db 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -41,6 +41,7 @@ nagev (@np1) Chris Lasher (@gotgenes) Doan Thanh Nam (@tndoan) Markus Koller (@toupeira) +Justin Cheevers @justincheevers @something are github user names. diff --git a/README.rst b/README.rst index 3b5bd75..710f189 100644 --- a/README.rst +++ b/README.rst @@ -73,6 +73,13 @@ The first thing you need after that is an up-to-date version of Jedi. You can either get it via ``pip install jedi`` or with ``git submodule update --init`` in your jedi-vim repository. +Example Installation Command using Pathogen: + +.. code-block:: sh + + cd ~/.vim/bundle/ && git clone --recursive https://github.com/davidhalter/jedi-vim.git + + On Arch Linux, you can also install jedi-vim from AUR: `vim-jedi `__. From fa08586a94ede46b6f0c874f5c769c04bbeb8721 Mon Sep 17 00:00:00 2001 From: justincheevers Date: Sat, 1 Mar 2014 12:17:09 -0800 Subject: [PATCH 2/3] Update README.rst --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 710f189..798e2ee 100644 --- a/README.rst +++ b/README.rst @@ -67,7 +67,8 @@ Installation You might want to use `pathogen `_ or `vundle `_ to install jedi in VIM. Also you need a VIM version that was compiled with ``+python``, which is typical for most -distributions on Linux. +distributions on Linux. The Python version compiled into VIM must be 2.6 or later +(you can check this from within VIM using ``:python import sys; print sys.version`` ) The first thing you need after that is an up-to-date version of Jedi. You can either get it via ``pip install jedi`` or with ``git submodule update --init`` From 5e0bf559726f984f07352e7512c8eea36341e71a Mon Sep 17 00:00:00 2001 From: haconeco Date: Fri, 7 Mar 2014 22:53:09 +0900 Subject: [PATCH 3/3] Update jedi.vim --- autoload/jedi.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/jedi.vim b/autoload/jedi.vim index c23fac1..7a8aca6 100644 --- a/autoload/jedi.vim +++ b/autoload/jedi.vim @@ -94,7 +94,7 @@ function! jedi#add_goto_window() execute 'belowright copen '.g:jedi#quickfix_window_height set nolazyredraw if g:jedi#use_tabs_not_buffers == 1 - map :call jedi#goto_window_on_enter() + noremap :call jedi#goto_window_on_enter() endif au WinLeave q " automatically leave, if an option is chosen redraw!