Releases: pappasam/jedi-language-server
Releases · pappasam/jedi-language-server
Version 0.15.0
Version 0.14.0
Changed
- 5e2bc3b 2020-05-17 | Completion item documentation is in PlainText (HEAD -> hover-improve) [Sam Roeca
- 44292b9 2020-05-17 | Hover now returns MarkupContent + Range [Sam Roeca]
- 0871c6d 2020-05-17 | Ensure that preferred parameters end in "=" [Sam Roeca]
- d66c402 2020-05-17 | current_word_range function added to pygls_utils [Sam Roeca]
Version 0.13.2
Changed
- Document symbol range selection made more accurate. Thanks to davidhalter/jedi#1576 (comment)!
Version 0.13.1
Changed
- Attribute access on InitializeParams now exclusively uses
rgetattr
in case Language Client omits optional fields in request.
Version 0.13.0
Changed
- Configuration takes place using initializationOptions instead of asynchronous reads of the current user config. Improves startup time and supports more LanguageClients.
Removed
- Dynamic registration. All registration is now static since static registration is widely supported.
Version 0.12.3
Removed
- Removed initialization message directly from the server. This should be handled and configured by LanguageClient plugins.
Version 0.12.2
Changed
- jedi completion
param
sorts first in COMPLETION. Resolves #19
Version 0.12.1
Changed
- Removed
)
from signatureHelp triggerCharacters (now just(
and,
). Thanks to rwols in #15 (comment)!
Version 0.12.0
Changed
- Most registrations moved to
static
registrations - Configuration options for
triggerCharacters
and other server-managed feature options were removed. See #15
Version 0.11.0
Added
- hierarchicalDocumentSymbolSupport (eg, you get a nice outline when making a documentSymbol request). Conditionally provides this functionality based on whether your language client supports this.