You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONFIGURATION.md
+3
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,8 @@ This server can be configured using `workspace/didChangeConfiguration` method. E
22
22
|`pylsp.plugins.jedi_completion.include_class_objects`|`boolean`| Adds class objects as a separate completion item. |`true`|
23
23
|`pylsp.plugins.jedi_completion.fuzzy`|`boolean`| Enable fuzzy when requesting autocomplete. |`false`|
24
24
|`pylsp.plugins.jedi_completion.eager`|`boolean`| Resolve documentation and detail eagerly. |`false`|
25
+
|`pylsp.plugins.jedi_completion.resolve_at_most_labels`|`number`| How many labels (at most) should be resolved? |`25`|
26
+
|`pylsp.plugins.jedi_completion.cache_labels_for`|`array` of `string` items | Modules for which the labels should be cached. |`["pandas", "numpy", "tensorflow", "matplotlib"]`|
25
27
|`pylsp.plugins.jedi_definition.enabled`|`boolean`| Enable or disable the plugin. |`true`|
26
28
|`pylsp.plugins.jedi_definition.follow_imports`|`boolean`| The goto call will follow imports. |`true`|
27
29
|`pylsp.plugins.jedi_definition.follow_builtin_imports`|`boolean`| If follow_imports is True will decide if it follow builtin imports. |`true`|
@@ -54,6 +56,7 @@ This server can be configured using `workspace/didChangeConfiguration` method. E
54
56
|`pylsp.plugins.pylint.args`|`array` of non-unique `string` items | Arguments to pass to pylint. |`null`|
55
57
|`pylsp.plugins.pylint.executable`|`string`| Executable to run pylint with. Enabling this will run pylint on unsaved files via stdin. Can slow down workflow. Only works with python3. |`null`|
56
58
|`pylsp.plugins.rope_completion.enabled`|`boolean`| Enable or disable the plugin. |`true`|
59
+
|`pylsp.plugins.rope_completion.eager`|`boolean`| Resolve documentation and detail eagerly. |`false`|
57
60
|`pylsp.plugins.yapf.enabled`|`boolean`| Enable or disable the plugin. |`true`|
58
61
|`pylsp.rope.extensionModules`|`string`| Builtin and c-extension modules that are allowed to be imported and inspected by rope. |`null`|
59
62
|`pylsp.rope.ropeFolder`|`array` of unique `string` items | The name of the folder in which rope stores project configurations and data. Pass `null` for not using such a folder at all. |`null`|
0 commit comments