From bbe2861fa1eb157247eeacda626355bd0cc03451 Mon Sep 17 00:00:00 2001 From: justincheevers Date: Thu, 27 Feb 2014 15:32:49 -0800 Subject: [PATCH 1/2] 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/2] 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``