Skip to content

Commit

Permalink
List all servers in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Jul 4, 2021
1 parent 7738a41 commit 8ddb2a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Language Servers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
" \"jedi-language-server\",\n",
"]\n",
"lang_server_table(\n",
" {key: spec for key, spec in mgr.language_servers.items() if key in nb_langs}\n",
" {key: spec for key, spec in mgr.all_language_servers.items() if key in nb_langs}\n",
")"
]
},
Expand Down Expand Up @@ -206,7 +206,7 @@
"lang_server_table(\n",
" {\n",
" key: spec\n",
" for key, spec in mgr.language_servers.items()\n",
" for key, spec in mgr.all_language_servers.items()\n",
" if \"npm\" in spec[\"install\"]\n",
" }\n",
")"
Expand Down Expand Up @@ -287,7 +287,7 @@
"source": [
"sci_langs = [\"texlab\"]\n",
"lang_server_table(\n",
" {key: spec for key, spec in mgr.language_servers.items() if key in sci_langs}\n",
" {key: spec for key, spec in mgr.all_language_servers.items() if key in sci_langs}\n",
")"
]
},
Expand Down Expand Up @@ -330,7 +330,7 @@
"source": [
"troubleshooting_data = {\n",
" key: spec\n",
" for key, spec in mgr.language_servers.items()\n",
" for key, spec in mgr.all_language_servers.items()\n",
" if (\n",
" \"troubleshoot\" in spec\n",
" # ignore trivial Node.js advice if only this is present\n",
Expand Down

0 comments on commit 8ddb2a5

Please sign in to comment.