11# Language Server Protocol integration for Jupyter(Lab)
22
3- [ ![ tests] ( https://github.com/krassowski /jupyterlab-lsp/workflows/CI/badge.svg )] ( https://github.com/krassowski /jupyterlab-lsp/actions?query=workflow%3ACI+branch%3Amaster )
3+ [ ![ tests] ( https://github.com/jupyter-lsp /jupyterlab-lsp/workflows/CI/badge.svg )] ( https://github.com/jupyter-lsp /jupyterlab-lsp/actions?query=workflow%3ACI+branch%3Amaster )
44[ ![ Documentation Status] ( https://readthedocs.org/projects/jupyterlab-lsp/badge/?version=latest )] ( https://jupyterlab-lsp.readthedocs.io/en/latest/?badge=latest )
55[ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/krassowski/jupyterlab-lsp/master?urlpath=lab%2Ftree%2Fexamples%2FPython.ipynb )
66
@@ -18,20 +18,20 @@ Hover over any piece of code; if an underline appears, you can press <kbd>Ctrl</
1818to get a tooltip with function/class signature, module documentation or any other
1919piece of information that the language server provides
2020
21- ![ hover] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/hover.png )
21+ ![ hover] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/hover.png )
2222
2323### Diagnostics
2424
2525Critical errors have red underline, warnings are orange, etc. Hover
2626over the underlined code to see a more detailed message
2727
28- ![ inspections] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/inspections.png )
28+ ![ inspections] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/inspections.png )
2929
3030### Jump to Definition
3131
3232Use the context menu entry, or <kbd >Alt</kbd > + :computer_mouse : to jump to definitions (you can change it to <kbd >Ctrl</kbd >/<kbd >⌘</kbd > in settings); use <kbd >Alt</kbd > + <kbd >o</kbd > to jump back
3333
34- ![ jump] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/jump_to_definition.png )
34+ ![ jump] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/jump_to_definition.png )
3535
3636### Highlight References
3737
@@ -43,19 +43,19 @@ Place your cursor on a variable, function, etc and all the usages will be highli
4343 completion.
4444- You can choose to receive the completion suggestions as you type by enabling ` continuousHinting ` setting.
4545
46- ![ invoke] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/autocompletion.gif )
46+ ![ invoke] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/autocompletion.gif )
4747
4848### Automatic Signature Suggestions
4949
5050Function signatures will automatically be displayed
5151
52- ![ signature] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/signature.png )
52+ ![ signature] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/signature.png )
5353
5454### Kernel-less Autocompletion
5555
5656Advanced static-analysis autocompletion without a running kernel
5757
58- ![ autocompletion] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/completions-Julia-Python-R.gif )
58+ ![ autocompletion] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/completions-Julia-Python-R.gif )
5959
6060#### The runtime kernel suggestions are still there
6161
@@ -75,15 +75,15 @@ setting; Or add both if you like to code in hardcore mode and get no completions
7575Rename variables, functions and more, in both: notebooks and the file editor.
7676Use the context menu option or the <kbd >F2</kbd > shortcut to invoke.
7777
78- ![ rename] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/rename.png )
78+ ![ rename] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/rename.png )
7979
8080### Diagnostics panel
8181
8282Sort and jump between the diagnostics using the diagnostics panel.
8383Open it searching for "Show diagnostics panel" in JupyterLab commands palette or from the context menu.
8484Use context menu on rows in the panel to filter out diagnostics or copy their message.
8585
86- ![ panel] ( https://raw.githubusercontent.com/krassowski /jupyterlab-lsp/master/examples/screenshots/panel.png )
86+ ![ panel] ( https://raw.githubusercontent.com/jupyter-lsp /jupyterlab-lsp/master/examples/screenshots/panel.png )
8787
8888## Prerequisites
8989
@@ -157,7 +157,7 @@ Use of a python `virtualenv` or a conda env is also recommended.
157157 pip install git+https://github.com/krassowski/python-language-server.git@main
158158 ```
159159
160- Please report any regressions [ here] ( https://github.com/krassowski /jupyterlab-lsp/issues/272 ) .
160+ Please report any regressions [ here] ( https://github.com/jupyter-lsp /jupyterlab-lsp/issues/272 ) .
161161
1621621 . (Optional, IPython users only) to improve the performance of autocompletion,
163163 disable Jedi in IPython (the LSP servers for Python use Jedi too).
0 commit comments