Skip to content

Commit 0563435

Browse files
authored
Match rope_completions setting documentation with reality (#210)
1 parent bf9d5fa commit 0563435

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONFIGURATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ This server can be configured using `workspace/didChangeConfiguration` method. E
5858
| `pylsp.plugins.pylint.enabled` | `boolean` | Enable or disable the plugin. | `false` |
5959
| `pylsp.plugins.pylint.args` | `array` of non-unique `string` items | Arguments to pass to pylint. | `null` |
6060
| `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` |
61-
| `pylsp.plugins.rope_completion.enabled` | `boolean` | Enable or disable the plugin. | `true` |
61+
| `pylsp.plugins.rope_completion.enabled` | `boolean` | Enable or disable the plugin. | `false` |
6262
| `pylsp.plugins.rope_completion.eager` | `boolean` | Resolve documentation and detail eagerly. | `false` |
6363
| `pylsp.plugins.yapf.enabled` | `boolean` | Enable or disable the plugin. | `true` |
6464
| `pylsp.rope.extensionModules` | `string` | Builtin and c-extension modules that are allowed to be imported and inspected by rope. | `null` |

pylsp/config/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@
333333
},
334334
"pylsp.plugins.rope_completion.enabled": {
335335
"type": "boolean",
336-
"default": true,
336+
"default": false,
337337
"description": "Enable or disable the plugin."
338338
},
339339
"pylsp.plugins.rope_completion.eager": {

0 commit comments

Comments
 (0)