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.45.1
8
+
9
+
### Fixed
10
+
11
+
- Disable semantic tokens by default because they are currently broken. Works around this issue: <https://github.com/pappasam/jedi-language-server/issues/340>
@@ -199,7 +199,7 @@ A list of regular expressions. If any regular expression in ignorePatterns match
199
199
- type: `string[]`
200
200
- default: `[]`
201
201
202
-
In general, you should prefer the default value for this option. Jedi is very good at filtering values for end users. That said, there are situations where IDE developers, or some programmers in some code bases, may want to filter some completions by name. This flexible interface is provided to accommodate these advanced use cases. If you have one of these advanced use cases, see below for some example patterns (and their corresponding regular expression).
202
+
In general, you should prefer the default value for this option. Jedi is good at filtering values for end users. That said, there are situations where IDE developers, or some programmers in some codebases, may want to filter some completions by name. This flexible interface is provided to accommodate these advanced use cases. If you have one of these advanced use cases, see below for some example patterns (and their corresponding regular expression).
203
203
204
204
#### All Private Names
205
205
@@ -265,7 +265,7 @@ When diagnostics are enabled, run on document open
265
265
266
266
### diagnostics.didChange
267
267
268
-
When diagnostics are enabled, run on in-memory document change (eg, while you're editing, without needing to save to disk)
268
+
When diagnostics are enabled, run on in-memory document change (e.g., while you're editing, without needing to save to disk)
269
269
270
270
- type: `boolean`
271
271
- default: `true`
@@ -416,10 +416,10 @@ If you manually set this option, it overrides the default. Setting it to an empt
416
416
417
417
### semanticTokens.enable
418
418
419
-
Improves highlighting by providing semantic token information.
419
+
Improves highlighting by providing semantic token information. Disabled by default, because feature is broken and currently under development.
420
420
421
421
- type: `boolean`
422
-
- default: `true`
422
+
- default: `false`
423
423
424
424
## Diagnostics
425
425
@@ -475,7 +475,7 @@ jedi-language-server aims to support Jedi's capabilities and expose them through
0 commit comments