HackSoftware / vim-python-domain-knowledge

Vim plugin for Python 3+ written in Python 3 for project specific autocomplete of functions and classes and automatic import filing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add new shortcut for deleting all unused imports from the current file

Ivo-Donchev opened this issue · comments

Example:

from module_x import (
    func_a,
    func_b
)

func_a()

Expected result:

from module_x import func_a


func_a()