Skip to content

Commit 1a81996

Browse files
committed
Release 0.5.0
1 parent 3d4fe87 commit 1a81996

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Examples below are for Python, but it works as well for R:
2323

2424
![jump](https://raw.githubusercontent.com/krassowski/jupyterlab-lsp/master/examples/screenshots/jump_to_definition.png)
2525

26-
- highlight usages: just place your cursor on a variable, function etc and all the usages will be highlighted (works only in the file editor or within a single cell)
26+
- highlight usages: just place your cursor on a variable, function etc and all the usages will be highlighted
2727

2828
- auto invocation of completer on certain characters, for example '.' (dot) in Python
2929

@@ -39,8 +39,10 @@ Examples below are for Python, but it works as well for R:
3939

4040
when a kernel is available the suggestions from the kernel (such as keys of a dict and columns of a DataFrame autocompletion) are merged with the suggestions from LSP (currently only in notebook).
4141

42-
New in 0.5.0 (currently RC - please help testing if you can):
43-
- multiple LSP connections per notebook, e.g. SQL or R (using rpy2) embedded in Python notebook [(example)](https://github.com/krassowski/jupyterlab-lsp/blob/master/examples/Magics_and_rpy2.ipynb).
42+
New in 0.5.0:
43+
- multiple LSP connections per notebook, e.g. SQL or R (using rpy2) embedded in Python notebook [(example)](https://github.com/krassowski/jupyterlab-lsp/blob/master/examples/Magics_and_rpy2.ipynb),
44+
- symbol highlight under cursor now works in both file editors and notebooks,
45+
- and many other improvements, see the [release notes](https://github.com/krassowski/jupyterlab-lsp/releases/tag/v0.5.0).
4446

4547
### Coming soon:
4648

@@ -50,17 +52,16 @@ New in 0.5.0 (currently RC - please help testing if you can):
5052
- to enable aggressive autocompletion (like in hinterland)
5153
- to change the verbosity of signature hints (whether to show documentation, number of lines to be shown)
5254

53-
If a feature you need is not on this list (or the lists below) please feel free to suggest it by opening an issue.
54-
5555
### Planned:
5656

57-
- "rename" action (PR welcome)
57+
- "rename" action (PR welcome, but please mind issue #23)
5858

5959
### Low priority:
6060

6161
- Gutter with linter results
6262
- Use the kernel session for autocompletion in FileEditor if available (PR welcome)
6363

64+
If a feature you need is not on the lists above, please feel free to suggest it by opening a new [issue](https://github.com/krassowski/jupyterlab-lsp/issues).
6465

6566
#### Hints
6667

@@ -69,7 +70,7 @@ This extension behaves well with this feature.
6970

7071
## Under the hood
7172

72-
This would not be possible if not the fantastic work of https://github.com/wylieconlon/lsp-editor-adapter.
73+
This would not be possible if not the fantastic work at [wylieconlon/lsp-editor-adapter](https://github.com/wylieconlon/lsp-editor-adapter).
7374

7475
## Prerequisites
7576

@@ -131,7 +132,7 @@ ln -s /usr usr
131132

132133
If your user does not have sufficient permissions to traverse the entire path, you will not be able to open the file.
133134

134-
### Updatng the extension
135+
### Updating the extension
135136

136137
To update already installed extension:
137138

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
22
"name": "@krassowski/jupyterlab-lsp",
3-
"version": "0.5.0-rc.2",
3+
"version": "0.5.0",
44
"description": "Language Server Protocol integration for JupyterLab",
55
"keywords": [
66
"jupyter",
77
"jupyterlab",
88
"jupyterlab-extension",
99
"lsp",
10-
"language-server-protocol"
10+
"language-server-protocol",
11+
"intellisense",
12+
"code-intelligence",
13+
"linting"
1114
],
1215
"homepage": "https://github.com/krassowski/jupyterlab-lsp",
1316
"bugs": {

0 commit comments

Comments
 (0)