Skip to content

Commit 9362847

Browse files
authored
Merge pull request jupyter-lsp#693 from jupyter-lsp/change-repo-in-links
Update links to point to new organization
2 parents c2a8283 + e3a08c9 commit 9362847

File tree

20 files changed

+103
-61
lines changed

20 files changed

+103
-61
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ You can contribute to the project through:
2121

2222
Thank you for all your contributions :heart:
2323

24-
[license]: https://github.com/krassowski/jupyterlab-lsp/blob/master/LICENSE
24+
[license]: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/LICENSE
2525
[extending]: ./docs/Extending.html
2626
[roadmap]: ./docs/Roadmap.html
27-
[jupyterlab-lsp]: https://github.com/krassowski/jupyterlab-lsp.git
27+
[jupyterlab-lsp]: https://github.com/jupyter-lsp/jupyterlab-lsp.git
2828
[code-of-conduct]: https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md
2929

3030
### Set up the environment
@@ -378,10 +378,10 @@ The spec should only be advertised if the command _could actually_ be run:
378378

379379
otherwise an empty dictionary (`{}`) should be returned.
380380

381-
[built-in specs]: https://github.com/krassowski/jupyterlab-lsp/tree/master/python_packages/jupyter_lsp/jupyter_lsp/specs
382-
[setup.cfg]: https://github.com/krassowski/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/setup.cfg
383-
[schema]: https://github.com/krassowski/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/schema/schema.json
384-
[utilities]: https://github.com/krassowski/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/specs/utils.py
381+
[built-in specs]: https://github.com/jupyter-lsp/jupyterlab-lsp/tree/master/python_packages/jupyter_lsp/jupyter_lsp/specs
382+
[setup.cfg]: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/setup.cfg
383+
[schema]: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/schema/schema.json
384+
[utilities]: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/specs/utils.py
385385

386386
##### Common Concerns
387387

@@ -395,8 +395,8 @@ otherwise an empty dictionary (`{}`) should be returned.
395395
- use a helper script to encapsulate some complexity, or
396396
- use a command argument of the interpreter is available (see the [r spec][] and [julia spec] for examples)
397397

398-
[r spec]: https://github.com/krassowski/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/specs/r_languageserver.py
399-
[julia spec]: https://github.com/krassowski/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/specs/julia_language_server.py
398+
[r spec]: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/specs/r_languageserver.py
399+
[julia spec]: https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/specs/julia_language_server.py
400400

401401
##### Example: making a pip-installable `cool-language-server` spec
402402

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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</
1818
to get a tooltip with function/class signature, module documentation or any other
1919
piece 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

2525
Critical errors have red underline, warnings are orange, etc. Hover
2626
over 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

3232
Use 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

5050
Function 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

5656
Advanced 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
7575
Rename variables, functions and more, in both: notebooks and the file editor.
7676
Use 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

8282
Sort and jump between the diagnostics using the diagnostics panel.
8383
Open it searching for "Show diagnostics panel" in JupyterLab commands palette or from the context menu.
8484
Use 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

162162
1. (Optional, IPython users only) to improve the performance of autocompletion,
163163
disable Jedi in IPython (the LSP servers for Python use Jedi too).

docs/Architecture.ipynb

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"\n",
108108
"> TBD\n",
109109
"\n",
110-
"[#76]: https://github.com/krassowski/jupyterlab-lsp/issues/76"
110+
"[#76]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/76"
111111
]
112112
},
113113
{
@@ -118,7 +118,7 @@
118118
"\n",
119119
"> TBD\n",
120120
"\n",
121-
"[#176]: https://github.com/krassowski/jupyterlab-lsp/issues/176"
121+
"[#176]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/176"
122122
]
123123
},
124124
{
@@ -129,7 +129,7 @@
129129
"\n",
130130
"> TBD\n",
131131
"\n",
132-
"[#184]: https://github.com/krassowski/jupyterlab-lsp/issues/184"
132+
"[#184]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/184"
133133
]
134134
},
135135
{
@@ -140,7 +140,7 @@
140140
"\n",
141141
"> TBD\n",
142142
"\n",
143-
"[#190]: https://github.com/krassowski/jupyterlab-lsp/issues/190"
143+
"[#190]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/190"
144144
]
145145
},
146146
{
@@ -151,13 +151,13 @@
151151
"\n",
152152
"> TBD\n",
153153
"\n",
154-
"[#191]: https://github.com/krassowski/jupyterlab-lsp/issues/191"
154+
"[#191]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/191"
155155
]
156156
}
157157
],
158158
"metadata": {
159159
"kernelspec": {
160-
"display_name": "Python 3",
160+
"display_name": "Python 3 (ipykernel)",
161161
"language": "python",
162162
"name": "python3"
163163
},
@@ -172,6 +172,13 @@
172172
"nbconvert_exporter": "python",
173173
"pygments_lexer": "ipython3",
174174
"version": "3.7.9"
175+
},
176+
"widgets": {
177+
"application/vnd.jupyter.widget-state+json": {
178+
"state": {},
179+
"version_major": 2,
180+
"version_minor": 0
181+
}
175182
}
176183
},
177184
"nbformat": 4,

docs/Configuring.ipynb

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"creating the user interface making use of these properties.\n",
117117
"\n",
118118
"[schema]:\n",
119-
" https://github.com/krassowski/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/schema/schema.json\n",
119+
" https://github.com/jupyter-lsp/jupyterlab-lsp/blob/master/python_packages/jupyter_lsp/jupyter_lsp/schema/schema.json\n",
120120
"\n",
121121
"More complex configurations that can't be hard-coded may benefit from the python\n",
122122
"approach:\n",
@@ -341,6 +341,13 @@
341341
"nbconvert_exporter": "python",
342342
"pygments_lexer": "ipython3",
343343
"version": "3.7.9"
344+
},
345+
"widgets": {
346+
"application/vnd.jupyter.widget-state+json": {
347+
"state": {},
348+
"version_major": 2,
349+
"version_minor": 0
350+
}
344351
}
345352
},
346353
"nbformat": 4,

docs/Extending.ipynb

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
" files.\n",
159159
"\n",
160160
"For an example of a complete theme see\n",
161-
"[theme-vscode](https://github.com/krassowski/jupyterlab-lsp/tree/master/packages/theme-vscode)."
161+
"[theme-vscode](https://github.com/jupyter-lsp/jupyterlab-lsp/tree/master/packages/theme-vscode)."
162162
]
163163
},
164164
{
@@ -287,7 +287,7 @@
287287
],
288288
"metadata": {
289289
"kernelspec": {
290-
"display_name": "Python 3",
290+
"display_name": "Python 3 (ipykernel)",
291291
"language": "python",
292292
"name": "python3"
293293
},
@@ -302,6 +302,13 @@
302302
"nbconvert_exporter": "python",
303303
"pygments_lexer": "ipython3",
304304
"version": "3.7.9"
305+
},
306+
"widgets": {
307+
"application/vnd.jupyter.widget-state+json": {
308+
"state": {},
309+
"version_major": 2,
310+
"version_minor": 0
311+
}
305312
}
306313
},
307314
"nbformat": 4,

docs/Releasing.ipynb

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"```\n",
3030
"\n",
3131
"- TODO: create a `release.py` script\n",
32-
" [#88](https://github.com/krassowski/jupyterlab-lsp/issues/88)\n",
32+
" [#88](https://github.com/jupyter-lsp/jupyterlab-lsp/issues/88)\n",
3333
"\n",
3434
"The PyPI version (jupyter-lsp) must be updated in the following places:\n",
3535
"\n",
@@ -94,7 +94,7 @@
9494
],
9595
"metadata": {
9696
"kernelspec": {
97-
"display_name": "Python 3",
97+
"display_name": "Python 3 (ipykernel)",
9898
"language": "python",
9999
"name": "python3"
100100
},
@@ -109,6 +109,13 @@
109109
"nbconvert_exporter": "python",
110110
"pygments_lexer": "ipython3",
111111
"version": "3.7.9"
112+
},
113+
"widgets": {
114+
"application/vnd.jupyter.widget-state+json": {
115+
"state": {},
116+
"version_major": 2,
117+
"version_minor": 0
118+
}
112119
}
113120
},
114121
"nbformat": 4,

docs/Roadmap.ipynb

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"> If a feature you would like is not on the lists above, please feel free to\n",
1010
"> suggest it by opening a new\n",
11-
"> [issue](https://github.com/krassowski/jupyterlab-lsp/issues)."
11+
"> [issue](https://github.com/jupyter-lsp/jupyterlab-lsp/issues)."
1212
]
1313
},
1414
{
@@ -35,7 +35,7 @@
3535
"source": [
3636
"### Backend\n",
3737
"\n",
38-
"- [#49](https://github.com/krassowski/jupyterlab-lsp/issues/49) cookiecutter for\n",
38+
"- [#49](https://github.com/jupyter-lsp/jupyterlab-lsp/issues/49) cookiecutter for\n",
3939
" pip-installable specs\n",
4040
"- add hook system to allow serverextensions/kernels to modify, inspect and react\n",
4141
" to LSP messages"
@@ -44,7 +44,7 @@
4444
],
4545
"metadata": {
4646
"kernelspec": {
47-
"display_name": "Python 3",
47+
"display_name": "Python 3 (ipykernel)",
4848
"language": "python",
4949
"name": "python3"
5050
},
@@ -59,6 +59,13 @@
5959
"nbconvert_exporter": "python",
6060
"pygments_lexer": "ipython3",
6161
"version": "3.7.9"
62+
},
63+
"widgets": {
64+
"application/vnd.jupyter.widget-state+json": {
65+
"state": {},
66+
"version_major": 2,
67+
"version_minor": 0
68+
}
6269
}
6370
},
6471
"nbformat": 4,

docs/index.ipynb

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"- [jupyterlab-lsp](https://pypi.org/project/jupyterlab-lsp/)\n",
1212
"- [jupyter-lsp](https://pypi.org/project/jupyter-lsp/)\n",
1313
"\n",
14-
"Both are managed on [GitHub](https://github.com/krassowski/jupyterlab-lsp),\n",
14+
"Both are managed on [GitHub](https://github.com/jupyter-lsp/jupyterlab-lsp),\n",
1515
"where you can find the\n",
16-
"[issue tracker](https://github.com/krassowski/jupyterlab-lsp/issues)."
16+
"[issue tracker](https://github.com/jupyter-lsp/jupyterlab-lsp/issues)."
1717
]
1818
},
1919
{
@@ -70,14 +70,14 @@
7070
"Changelog <CHANGELOG>\n",
7171
"Roadmap\n",
7272
"Architecture\n",
73-
"GitHub repo <https://github.com/krassowski/jupyterlab-lsp>\n",
73+
"GitHub repo <https://github.com/jupyter-lsp/jupyterlab-lsp>\n",
7474
"```"
7575
]
7676
}
7777
],
7878
"metadata": {
7979
"kernelspec": {
80-
"display_name": "Python 3",
80+
"display_name": "Python 3 (ipykernel)",
8181
"language": "python",
8282
"name": "python3"
8383
},
@@ -92,6 +92,13 @@
9292
"nbconvert_exporter": "python",
9393
"pygments_lexer": "ipython3",
9494
"version": "3.7.9"
95+
},
96+
"widgets": {
97+
"application/vnd.jupyter.widget-state+json": {
98+
"state": {},
99+
"version_major": 2,
100+
"version_minor": 0
101+
}
95102
}
96103
},
97104
"nbformat": 4,

packages/_example-extractor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
This is an example of the Extractor API. See the [discussion].
44

5-
[discussion]: https://github.com/krassowski/jupyterlab-lsp/issues/561
5+
[discussion]: https://github.com/jupyter-lsp/jupyterlab-lsp/issues/561

packages/code-jumpers/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Code Jumpers
22

3-
Implementation underlying the jump to definition functionality in [JupyterLab-LSP](https://github.com/krassowski/jupyterlab-lsp).
3+
Implementation underlying the jump to definition functionality in [JupyterLab-LSP](https://github.com/jupyter-lsp/jupyterlab-lsp).

0 commit comments

Comments
 (0)