File tree 4 files changed +7
-5
lines changed
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.
4
4
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
7
- ## v0.2.6.4.0.2 - 2023-12-14
7
+ ## v0.2.6.4.0.3 - 2023-12-14
8
8
9
9
### 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.
11
12
- Patch path to the "data" directory when the executable is built on GitHub Actions.
12
13
13
14
## 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
5
5
-- see: https://github.com/sol/hpack
6
6
7
7
name : agda-language-server
8
- version : 0.2.6.4.0.2
8
+ version : 0.2.6.4.0.3
9
9
synopsis : An implementation of language server protocal (LSP) for Agda 2.
10
10
description : Please see the README on GitHub at <https://github.com/agda/agda-language-server#readme>
11
11
category : Development
Original file line number Diff line number Diff line change 1
1
name : agda-language-server
2
- version : 0.2.6.4.0.2
2
+ version : 0.2.6.4.0.3
3
3
github : " banacorn/agda-language-server"
4
4
license : MIT
5
5
author : " Ting-Gian LUA"
Original file line number Diff line number Diff line change @@ -112,7 +112,8 @@ handlers =
112
112
notificationHandler SInitialized $ \ _not -> pure () ,
113
113
notificationHandler STextDocumentDidOpen $ \ _not -> pure () ,
114
114
notificationHandler STextDocumentDidSave $ \ _not -> pure () ,
115
- notificationHandler STextDocumentDidChange $ \ _not -> pure ()
115
+ notificationHandler STextDocumentDidChange $ \ _not -> pure () ,
116
+ notificationHandler SCancelRequest $ \ _not -> pure ()
116
117
-- -- syntax highlighting
117
118
-- , requestHandler STextD_cumentSemanticTokensFull $ \req responder -> do
118
119
-- result <- Handler.onHighlight (req ^. (params . textDocument . uri))
You can’t perform that action at this time.
0 commit comments