wookayin / vim-autoimport

A vim plugin for adding import statements (for python and more) without LSP
https://work.in.progress
25 stars 5 forks source link

No working to packages in project? #5

Open Me1onRind opened 3 years ago

Me1onRind commented 3 years ago

Such as:

.
├── m.py
└── mylib
    ├── __init__.py
    └── foo.py
# mylib/foo.py
def hello():
    print("??")
# m.py
hello()

Use :ImportSymbol when cursor in m.py hello(), it report Cannot resolve import for Hello

If this plugin not support the packages in project?