I have a issue with VIM. I'm trying to install jedi-vim with Vundle plugin, and typing this "example":
import math
math.
after dot i get popup with autocomplete. Really not bad, but, i cant choose function/method/class/etc. what i want (arrows somehow doesn't worked, when show popup with autocomplete and preview of first function/method/class/etc. which automatically selected)
At my .vimrc file:
let g:jedi#popup_select_first = 0
let g:jedi#goto_command = "<leader>g"
let g:jedi#get_definition_command = "<leader>d"
let g:jedi#rename_command = "<leader>r"
let g:jedi#related_names_command = "<leader>n"
let g:jedi#autocompletion_command = "<C-Space>"
P.S. Maybe incompatible with some plugin, which installed also by Vundle:
- NERDTree
- NERDCommenter
- TagBar
- minibufexpl.vim
- FixedTaskList.vim
- conque-term
- vim-snippets
- vim-snipmate
- vim-addon-mw-utils
- tlib_vim
- git-vim
- vim-gitgutter
- vim-airline
- python-mode
I came across the same problem as you. I am new to vim so I only use a few plugins:
After trying and error, I found out
jedi-vim
is incompatible withminibufexpl
. So I deletedminibufexpl
and everything goes fine.