-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Properly set textDocumentSync properties of the serverCapabilities (#7)
* Properly set textDocumentSync properties of the serverCapabilities in order to make the LSP work in neovim * Add release notes * Add publisher to vscode extension package.json as demanded by vsce, the extension packaging and publishing tool
- Loading branch information
Showing
4 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## Fix textDocumentSync server capability | ||
|
||
Previously the `textDocumentSync` property was malformed and not according to spec. | ||
It seemed vscode did the right thing and fell back to sending both `didChange` and `didSave` notifications anyways. | ||
Neovim didn't, so we didn't receive any `didSave` notifications. Now everything is working as expected with neovim and vscode. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters