Cant use jedi vim on imported modules

偶尔善良 提交于 2019-12-09 23:32:04

问题


Lets say I have the next structure

MyProject
|--run.py
|--myclass1.py
|--folder
|  |--myclass2.py 

Im now editing run.py:

from myclass1 import MyClass1
from folder.myclass2 import MyClass2

jedi vim works great on MyClass1, but when I try anything from MyClass2 it just shows the error:

Omni completion (^O^N^P) Pattern not found

How to make it complete things on myclass2?

来源:https://stackoverflow.com/questions/31094490/cant-use-jedi-vim-on-imported-modules

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!