You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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
27
27
28
28
- auto invocation of completer on certain characters, for example '.' (dot) in Python
29
29
@@ -39,8 +39,10 @@ Examples below are for Python, but it works as well for R:
39
39
40
40
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).
41
41
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).
44
46
45
47
### Coming soon:
46
48
@@ -50,17 +52,16 @@ New in 0.5.0 (currently RC - please help testing if you can):
50
52
- to enable aggressive autocompletion (like in hinterland)
51
53
- to change the verbosity of signature hints (whether to show documentation, number of lines to be shown)
52
54
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
-
55
55
### Planned:
56
56
57
-
- "rename" action (PR welcome)
57
+
- "rename" action (PR welcome, but please mind issue #23)
58
58
59
59
### Low priority:
60
60
61
61
- Gutter with linter results
62
62
- Use the kernel session for autocompletion in FileEditor if available (PR welcome)
63
63
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).
64
65
65
66
#### Hints
66
67
@@ -69,7 +70,7 @@ This extension behaves well with this feature.
69
70
70
71
## Under the hood
71
72
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).
73
74
74
75
## Prerequisites
75
76
@@ -131,7 +132,7 @@ ln -s /usr usr
131
132
132
133
If your user does not have sufficient permissions to traverse the entire path, you will not be able to open the file.
0 commit comments