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
+5
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,11 @@ 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/).
6
6
7
+
## v0.2.7.0.1.3 - 2024-12-5
8
+
9
+
### Fixed
10
+
- Add dummy LSP handlers for `initialized`, `workspace/didChangeConfiguration`, `textDocument/didOpen`, `textDocument/didClose`, `textDocument/didChange`, and `textDocument/didSave` to avoid errors in the client.
-- includes the document content on save, so that we don't have to read it from the disk
89
-
-- saveOptions :: SaveOptions
90
-
-- saveOptions = SaveOptions (Just True)
85
+
syncOptions::TextDocumentSyncOptions
86
+
syncOptions =
87
+
TextDocumentSyncOptions
88
+
{ _openClose =JustTrue, -- receive open and close notifications from the client
89
+
_change =JustTextDocumentSyncKind_Incremental, -- receive change notifications from the client
90
+
_willSave =JustFalse, -- receive willSave notifications from the client
91
+
_willSaveWaitUntil =JustFalse, -- receive willSave notifications from the client
92
+
_save =Just$InR$SaveOptions (JustTrue) -- includes the document content on save, so that we don't have to read it from the disk (not sure if this is still true in lsp 2)
0 commit comments