Skip to content

Commit a371da2

Browse files
authored
Merge pull request #429 from krassowski/fix-jump-to-schema
Hotfix crash "blank screen" likely related to Mac command character
2 parents 9577d9a + 674e48c commit a371da2

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/workflows/job.test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defaults:
1414
env:
1515
# TODO extract these from files instead
1616
PY_JLSP_VERSION: 0.9.3
17-
JS_JLLSP_VERSION: 2.1.0
17+
JS_JLLSP_VERSION: 2.1.1
1818
JS_JLG2D_VERSION: 1.0.0
1919

2020
PYTHONUNBUFFERED: 1

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## CHANGELOG
22

3+
### `@krassowski/jupyterlab-lsp 2.1.1` (2020-12-15)
4+
5+
- bug fixes
6+
7+
- fix crash "blank screen" caused by Mac command character included in jump-to schema file ([#429])
8+
9+
[#429]: https://github.com/krassowski/jupyterlab-lsp/issues/429
10+
311
### `jupyter-lsp 0.9.3` (2020-12-13)
412

513
- features

packages/jupyterlab-lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",

packages/jupyterlab-lsp/schema/jump_to.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "string",
1111
"enum": ["Alt", "Control", "Shift", "Meta", "AltGraph", "Accel"],
1212
"default": "Alt",
13-
"description": "Keyboard key which needs to be pressed with click to jump. The allowed keys are Alt, Control, Shift, Accel, and AltGraph. Accel corresponds to Control or Meta (Command on Mac). Linux user: Meta key is also supported. Safari users: Meta key is also supported, AltGraph is not supported. To see which physical keys are mapped, visit: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState"
13+
"description": "Keyboard key which needs to be pressed with click to jump. The allowed keys are Alt, Control, Shift, Accel, and AltGraph. Accel corresponds to Control or Meta (Command on Mac). Linux user: Meta key is also supported. Safari users: Meta key is also supported, AltGraph is not supported. To see which physical keys are mapped, visit: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/getModifierState"
1414
}
1515
},
1616
"jupyter.lab.shortcuts": [

packages/metapackage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp-metapackage",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "JupyterLab LSP - Meta Package. All of the packages used by JupyterLab LSP",
55
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
66
"bugs": {

0 commit comments

Comments
 (0)