1
0
forked from VimPlug/jedi

Make goto work for pytest fixtures

This commit is contained in:
Dave Halter
2019-12-27 10:51:49 +01:00
parent 5a54d94aa5
commit 8c737ba17e
2 changed files with 17 additions and 4 deletions

View File

@@ -483,6 +483,10 @@ class _ActualTreeParamName(BaseTreeParamName):
class AnonymousParamName(_ActualTreeParamName):
@plugin_manager.decorate(name='goto_anonymous_param')
def goto(self):
return super(AnonymousParamName, self).goto()
@plugin_manager.decorate(name='infer_anonymous_param')
def infer(self):
values = super(AnonymousParamName, self).infer()