jedi-vim

Jedi Vim Python subclasses are not detected on TAB-completion

混江龙づ霸主 提交于 2019-11-29 12:39:11
The issue is on Arch (1) & Debian Jessie (2) where: 1. > uname -r 4.0.5-1-ARCH > echo $PYTHONPATH /usr/lib/python2.7/ Debian Jessie is without the PYTHONPATH set. My vim is compiled with python. :python import sys; print(sys.version) 2.7.10 (default, May 26 2015, 04:16:29) [GCC 5.1.0] I tried the following Arch Linux packages: > pacman -S python2-jedi vim-jedi completion works on classes but not on the subclasses. import os # os is built-in library. os. # ycm does not complete members of this class. I removed them and downloaded the git package. > cd ~/.vim/bundle/jedi-vim/jedi/test/ && ./run

Jedi Vim Python subclasses are not detected on TAB-completion

时间秒杀一切 提交于 2019-11-28 06:00:27
问题 The issue is on Arch (1) & Debian Jessie (2) where: 1. > uname -r 4.0.5-1-ARCH > echo $PYTHONPATH /usr/lib/python2.7/ Debian Jessie is without the PYTHONPATH set. My vim is compiled with python. :python import sys; print(sys.version) 2.7.10 (default, May 26 2015, 04:16:29) [GCC 5.1.0] I tried the following Arch Linux packages: > pacman -S python2-jedi vim-jedi completion works on classes but not on the subclasses. import os # os is built-in library. os. # ycm does not complete members of this