-2

if you get a

E492: Not an editor command: Python << PYTHONEOF

or a

import jedi
ImportError: No module named jedi
plaes
  • 31,788
  • 11
  • 91
  • 89

1 Answers1

0

go into your /jedi-vim folder and run git submodule update --init

also add

if has('python')
    command! -nargs=1 Python python <args>
else
    command! -nargs=1 Python python3 <args>
end

to jedi-vim/autoload/jedi.vim

  • 1
    please accept your own answer, if you think it's good enough. Apart from that: I don't think you should add something to `autoload/jedi.vim`. But in any way you have to install `Jedi`. – Dave Halter Oct 30 '13 at 16:06