featurehelp wanted
描述
Is there any interest in adjusting the code for Python so it can handle relative imports? It would be great if the plugin could link back to files within the current repo. Ideally recognizing the follow constructions:
from . import module
from .module import object
from ..parent_module import object
import .module
from packagename import module # I recognize this one would be trickier