File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/jupyterlab-lsp/src/features/completion Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ from the Language Server (in notebook).
66
66
If the kernel is too slow to respond promptly only the Language Server suggestions will be shown (default threshold: 0.6s).
67
67
You can configure the completer to not attempt to fetch the kernel completions if the kernel is busy (skipping the 0.6s timeout).
68
68
69
- You can deactivate the kernel suggestions by adding ` "kenel " ` to the ` disableCompletionsFrom ` in the ` completion ` section
70
- of _ Advanced Settings_ . Alternatively if you _ only_ want kernel completions you can add ` "languageServer " ` to the same
69
+ You can deactivate the kernel suggestions by adding ` "Kernel " ` to the ` disableCompletionsFrom ` in the ` completion ` section
70
+ of _ Advanced Settings_ . Alternatively if you _ only_ want kernel completions you can add ` "LSP " ` to the same
71
71
setting; Or add both if you like to code in hardcore mode and get no completions, or if another provider has been added.
72
72
73
73
### Rename
Original file line number Diff line number Diff line change @@ -81,15 +81,15 @@ export class LSPConnector
81
81
protected get use_lsp_completions ( ) : boolean {
82
82
return (
83
83
this . options . settings . composite . disableCompletionsFrom . indexOf (
84
- 'languageServer '
84
+ 'LSP '
85
85
) == - 1
86
86
) ;
87
87
}
88
88
89
89
protected get use_kernel_completions ( ) : boolean {
90
90
return (
91
91
this . options . settings . composite . disableCompletionsFrom . indexOf (
92
- 'kernel '
92
+ 'Kernel '
93
93
) == - 1
94
94
) ;
95
95
}
You can’t perform that action at this time.
0 commit comments