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
- improved performance of completion and highlights by minimising the number of highlight requests and GUI redraws (token checking, debouncing, acting on a single response only) ([#433])
7
+
- highlights now update after cell focus/blur events even if those do not trigger cursor movement ([#433])
"description": "LSP highlights of the variable under the cursor settings.",
6
+
"type": "object",
7
+
"properties": {
8
+
"debouncerDelay": {
9
+
"title": "Debouncer delay",
10
+
"type": "number",
11
+
"default": 250,
12
+
"description": "Number of milliseconds to delay sending out the highlights request to the language server; you can get better responsiveness adjusting this value, but setting it to zero can actually slow it down as the server might get overwhelmed when moving the cursor."
Copy file name to clipboardExpand all lines: packages/jupyterlab-lsp/schema/hover.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
"title": "Throttler delay",
17
17
"type": "number",
18
18
"default": 50,
19
-
"description": "Number of milliseconds to delay sending out the request hover request to the language server; you can get better responsiveness adjusting this value, but setting it to zero can actually slow it down as the server might get overwhelmed when moving the mose over the code."
19
+
"description": "Number of milliseconds to delay sending out the hover request to the language server; you can get better responsiveness adjusting this value, but setting it to zero can actually slow it down as the server might get overwhelmed when moving the mouse over the code."
0 commit comments