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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## 0.6.0
8
+
9
+
### Added
10
+
11
+
- Re-added `workspace/symbol` support using Jedi's `Project` object. This is much simpler and faster than the previous implementation.
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,13 @@ A [Language Server](https://microsoft.github.io/language-server-protocol/) for t
13
13
From your command line (bash / zsh), run:
14
14
15
15
```bash
16
-
pip install -U jedi jedi-language-server
16
+
pip install -U jedi-language-server
17
17
```
18
18
19
19
`-U` ensures that you're pulling the latest version from pypi.
20
20
21
+
Alternatively, consider using [pipx](https://github.com/pipxproject/pipx) to keep jedi-language-server isolated from your other Python dependencies.
22
+
21
23
## Overview
22
24
23
25
jedi-language-server aims to support all of Jedi's capabilities and expose them through the Language Server Protocol. It currently supports the following Language Server requests:
@@ -28,6 +30,7 @@ jedi-language-server aims to support all of Jedi's capabilities and expose them
0 commit comments