Skip to content

Releases: pappasam/jedi-language-server

Version 0.15.0

19 May 20:00
8a94e88
Compare
Choose a tag to compare

Changed

  • 1d5a11e 2020-05-19 | Set MarkupKind based on client configuration [Sam Roeca]
  • 3c41272 2020-05-19 | Save initializeParams in storage container [Sam Roeca]

Version 0.14.0

17 May 19:58
ee2bf23
Compare
Choose a tag to compare

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

12 May 23:32
Compare
Choose a tag to compare

Changed

Version 0.13.1

08 May 13:52
Compare
Choose a tag to compare

Changed

  • Attribute access on InitializeParams now exclusively uses rgetattr in case Language Client omits optional fields in request.

Version 0.13.0

07 May 17:18
Compare
Choose a tag to compare

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

06 May 17:11
Compare
Choose a tag to compare

Removed

  • Removed initialization message directly from the server. This should be handled and configured by LanguageClient plugins.

Version 0.12.2

05 May 16:29
f4bac79
Compare
Choose a tag to compare

Changed

  • jedi completion param sorts first in COMPLETION. Resolves #19

Version 0.12.1

04 May 13:56
Compare
Choose a tag to compare

Changed

  • Removed ) from signatureHelp triggerCharacters (now just ( and ,). Thanks to rwols in #15 (comment)!

Version 0.12.0

03 May 18:27
Compare
Choose a tag to compare

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

03 May 15:30
Compare
Choose a tag to compare

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.