Skip to content

Tags: ava-fred/lsp4e

Tags

0.26.5

Toggle 0.26.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: propagate LanguagServerWrapper startup exception to consumers (e…

…clipse#1044)

If there is an exception in the startup of the LanguageServerWrapper,
consumers get a cancellation exception rather than the actual exception
that occurred.
With this commit, this behavior is changed. As a consequence of the
change, calls to LanguageServerWrapper.start() will do nothing after a
failure. To test for this case (and attempt a restart() if feasible),
the startupFailed() method is added.

0.26.4

Toggle 0.26.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add @nullable Annotation to LSW.connect(document, file) (eclipse#1058)

Add @nullable Annotation to LSW.connect(document, file) to revert to the state before setting NonNullByDefault (3ed68da)

0.26.3

Toggle 0.26.3's commit message
ci: enable Windows target and 2 retries of maven build step on failure

0.26.2

Toggle 0.26.2's commit message
Increase the version of org.eclipse.lsp4e to force newly signed content

eclipse#1019

0.26.1

Toggle 0.26.1's commit message
Sync tycho-build with the version in main pom.

0.26.0

Toggle 0.26.0's commit message
Fix NPE with needs confirmation flag

0.25.1

Toggle 0.25.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove UI-blocking pop-up in LSWrapper.getInitializedServer() (eclips…

…e#951)

This commit follows up on the discussion started at
eclipse#947 (comment).

It removes the UI-blocking pop-up window that would appear when calling
org.eclipse.lsp4e.LanguageServerWrapper.getInitializedServer()
from a UI thread.

A progress indicator reflecting the status of the server's
initialization will still be displayed in the "Progress" view.

0.25.0

Toggle 0.25.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[eclipse#930] fix broken semantic highlight unit test (eclipse#940)

* [eclipse#930] fix broken semantic highlight unit test

due to the
eclipse-tm4e/tm4e@5c780dc
commit in tm4e the unit test fails.

fixes eclipse#930

* issue fixed in tm4e

* Add color check

* Use tm4e snapshot version to fix unit test

* Use tm4e release until next release

* fix copy and paste error

0.24.8

Toggle 0.24.8's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix NPE if ITextViewer is nullified during call to .underline()

Previously, it was possible for the `viewer` variable used in
`LSPDocumentLinkPresentationReconcilingStrategy.underline()` to be
nullified externally, which caused a null-pointer exception for the
call `viewer.getTextWidget()`.

This commit solves this problem by saving the relevant viewer as a
variable local to the
`LSPDocumentLinkPresentationReconcilingStrategy.underline()` function.

0.24.7

Toggle 0.24.7's commit message
Indicate when content assist proposals are incomplete.

Add a place-holder proposal that indicates when the list of content
assist proposals is incomplete.