Skip to content

Commit 59f07a3

Browse files
authored
Merge pull request #408 from krassowski/bollwyvl-patch-1
Update spec version in docs
2 parents 56194a3 + 99e9170 commit 59f07a3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

atest/07_Configuration.robot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ LaTeX
4040
*** Keywords ***
4141
Settings Should Change Editor Diagnostics
4242
[Arguments] ${language} ${file} ${server} ${settings} ${before} ${after} ${save command}=${EMPTY} ${needs reload}=${False}
43-
${before diagnostic} = Set Variable ${CSS DIAGNOSTIC}\[title^="${before}"]
44-
${after diagnostic} = Set Variable ${CSS DIAGNOSTIC}\[title^="${after}"]
43+
${before diagnostic} = Set Variable ${CSS DIAGNOSTIC}\[title*="${before}"]
44+
${after diagnostic} = Set Variable ${CSS DIAGNOSTIC}\[title*="${after}"]
4545
${tab} = Set Variable ${JLAB XP DOCK TAB}\[contains(., '${file}')]
4646
${close icon} = Set Variable *[contains(@class, 'm-TabBar-tabCloseIcon')]
4747
${save command} = Set Variable If "${save command}" ${save command} Save ${language} File

docs/Configuring.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"- `argv`, a list of shell tokens to launch the server in `stdio` mode (as\n",
6363
" opposed to `tcp`),\n",
6464
"- the `languages` which the server will respond to, and\n",
65-
"- the schema `version` of the spec (currently only `1`)\n",
65+
"- the schema `version` of the spec (currently `2`)\n",
6666
"\n",
6767
"```python\n",
6868
"# ./jupyter_notebook_config.json ---------- unique! -----------\n",
@@ -73,7 +73,7 @@
7373
" \"LanguageServerManager\": {\n",
7474
" \"language_servers\": {\n",
7575
" \"a-language-server-implementation\": {\n",
76-
" \"version\": 1,\n",
76+
" \"version\": 2,\n",
7777
" \"argv\": [\"/absolute/path/to/a-language-server\", \"--stdio\"],\n",
7878
" \"languages\": [\"a-language\"]\n",
7979
" }\n",
@@ -106,13 +106,13 @@
106106
" # if installed as a binary\n",
107107
" \"argv\": [shutil.which(\"a-language-server\")],\n",
108108
" \"languages\": [\"a-language\"],\n",
109-
" \"version\": 1\n",
109+
" \"version\": 2\n",
110110
" },\n",
111111
" \"another-language-implementation\": {\n",
112112
" # if run like a script\n",
113113
" \"argv\": [shutil.which(\"another-language-interpreter\"), \"another-language-server\"],\n",
114114
" \"languages\": [\"another-language\"],\n",
115-
" \"version\": 1\n",
115+
" \"version\": 2\n",
116116
" }\n",
117117
"}\n",
118118
"```"

0 commit comments

Comments
 (0)