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).
6666If the kernel is too slow to respond promptly only the Language Server suggestions will be shown (default threshold: 0.6s).
6767You can configure the completer to not attempt to fetch the kernel completions if the kernel is busy (skipping the 0.6s timeout).
6868
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
7171setting; Or add both if you like to code in hardcore mode and get no completions, or if another provider has been added.
7272
7373### Rename
Original file line number Diff line number Diff line change @@ -81,15 +81,15 @@ export class LSPConnector
8181 protected get use_lsp_completions ( ) : boolean {
8282 return (
8383 this . options . settings . composite . disableCompletionsFrom . indexOf (
84- 'languageServer '
84+ 'LSP '
8585 ) == - 1
8686 ) ;
8787 }
8888
8989 protected get use_kernel_completions ( ) : boolean {
9090 return (
9191 this . options . settings . composite . disableCompletionsFrom . indexOf (
92- 'kernel '
92+ 'Kernel '
9393 ) == - 1
9494 ) ;
9595 }
You can’t perform that action at this time.
0 commit comments