-
Notifications
You must be signed in to change notification settings - Fork 154
Allow to disable LSP or Kernel completions independently. #586
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
49dbdaa
fcb6b4d
c7afdc4
2dc4089
26fb463
2117c36
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -66,6 +66,10 @@ from the Language Server (in notebook). | |
| If the kernel is too slow to respond promptly only the Language Server suggestions will be shown (default threshold: 0.6s). | ||
| You can configure the completer to not attempt to fetch the kernel completions if the kernel is busy (skipping the 0.6s timeout). | ||
|
|
||
| You can deactivate the kernel suggestions by setting the `useKernelCompletions` to `false` in the `completion` section | ||
| of advanced settings. Alternatively if you _only_ want kernel completions you can set `useLspCompletions` to `false`. | ||
| Or both if you like to code in hardcore mode and get no completions. | ||
|
||
|
|
||
| ### Rename | ||
|
|
||
| Rename variables, functions and more, in both: notebooks and the file editor. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,6 +41,18 @@ | |
| "type": "number", | ||
| "description": "The time to wait for the kernel completions suggestions in milliseconds. Set to 0 to disable kernel completions, or to -1 to wait indefinitely (not recommended)." | ||
| }, | ||
| "useKernelCompletions": { | ||
| "title": "Request Kernel Completion", | ||
| "type": "boolean", | ||
| "default": true, | ||
| "description": "Whether to send completions request to the kernel." | ||
| }, | ||
| "useLspCompletions": { | ||
| "title": "Request LSP Completion", | ||
| "type": "boolean", | ||
| "default": true, | ||
| "description": "Whether to send completions request to the lsp server." | ||
|
||
| }, | ||
| "waitForBusyKernel": { | ||
| "title": "Wait for kernel if busy", | ||
| "default": true, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.