We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e524c3b commit 831092eCopy full SHA for 831092e
pyls/plugins/definition.py
@@ -9,8 +9,8 @@
9
def pyls_definitions(config, document, position):
10
settings = config.plugin_settings('jedi_definition')
11
definitions = document.jedi_script(position).goto_assignments(
12
- follow_imports=settings.get('follow_imports', False),
13
- follow_builtin_imports=settings.get('follow_builtin_imports', False))
+ follow_imports=settings.get('follow_imports', True),
+ follow_builtin_imports=settings.get('follow_builtin_imports', True))
14
15
definitions = [
16
d for d in definitions
0 commit comments