File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
66
7- ## v0.2.6.4.0.2 - 2023-12-14
7+ ## v0.2.6.4.0.3 - 2023-12-14
88
99### Fixed
10- - Add missing handlers for ` lsp ` methods.
10+ - #15 : Add missing handlers for ` lsp ` methods.
11+ - #24 : Fix the encoding of binaries built on GitHub Actions.
1112- Patch path to the "data" directory when the executable is built on GitHub Actions.
1213
1314## v0.2.6.4.0.0 - 2023-12-12
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cabal-version: 1.12
55-- see: https://github.com/sol/hpack
66
77name : agda-language-server
8- version : 0.2.6.4.0.2
8+ version : 0.2.6.4.0.3
99synopsis : An implementation of language server protocal (LSP) for Agda 2.
1010description : Please see the README on GitHub at <https://github.com/agda/agda-language-server#readme>
1111category : Development
Original file line number Diff line number Diff line change 11name : agda-language-server
2- version : 0.2.6.4.0.2
2+ version : 0.2.6.4.0.3
33github : " banacorn/agda-language-server"
44license : MIT
55author : " Ting-Gian LUA"
Original file line number Diff line number Diff line change @@ -112,7 +112,8 @@ handlers =
112112 notificationHandler SInitialized $ \ _not -> pure () ,
113113 notificationHandler STextDocumentDidOpen $ \ _not -> pure () ,
114114 notificationHandler STextDocumentDidSave $ \ _not -> pure () ,
115- notificationHandler STextDocumentDidChange $ \ _not -> pure ()
115+ notificationHandler STextDocumentDidChange $ \ _not -> pure () ,
116+ notificationHandler SCancelRequest $ \ _not -> pure ()
116117 -- -- syntax highlighting
117118 -- , requestHandler STextD_cumentSemanticTokensFull $ \req responder -> do
118119 -- result <- Handler.onHighlight (req ^. (params . textDocument . uri))
You can’t perform that action at this time.
0 commit comments