File tree Expand file tree Collapse file tree 5 files changed +25
-4
lines changed Expand file tree Collapse file tree 5 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,27 @@ 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
+ ## [ 0.1.162]
8
+
9
+ ## [ 0.1.161]
10
+
11
+ ### Fixed
12
+ - Fix incorrect deserialization of completion items in NCM2 (#1151 )
13
+ - Fix markdown syntax on hover (#1039 )
14
+ - Fix diagnostics signs logic (#1126 )
15
+
16
+ ### Added
17
+ - Add support for initialization options in server command (#1116 )
18
+ - Add function to execute code action by kind (#1160 )
19
+ - Add support for rust-analyzer chaining hints (#1108 )
20
+ - Add parameter to explainErrorAtPoint to enable running silently (#1143 )
21
+ - Use separate namespace for document and diagnostic highlights (#1145 )
22
+ - Add LanguageClient_codeLensDisplay config (#1144 )
23
+ - Add completion item documentation (#1043 )
24
+ - Do not send notifications/requests for buffers without a configured server (#1121 )
25
+ - Add support for document highlight on vim8 (#1123 )
26
+ - Add automatic server restart on crash (#1113 )
27
+
7
28
## [ 0.1.160]
8
29
9
30
### Fixed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " languageclient"
3
- version = " 0.1.160 "
3
+ version = " 0.1.161 "
4
4
authors = [" Junfeng Li <autozimu@gmail.com>" ]
5
5
description = " Language Server Protocol (LSP) support for vim and neovim"
6
6
publish = false
Original file line number Diff line number Diff line change 1
1
# !/usr/bin/env pwsh
2
2
3
- $version = ' 0.1.160 '
3
+ $version = ' 0.1.161 '
4
4
$name = ' languageclient'
5
5
$url = " https://github.com/autozimu/LanguageClient-neovim/releases/download/$version /$name -$version -"
6
6
Original file line number Diff line number Diff line change 6
6
set -o nounset # error when referencing undefined variable
7
7
set -o errexit # exit when command fails
8
8
9
- version=0.1.160
9
+ version=0.1.161
10
10
name=languageclient
11
11
12
12
arch=$( uname -sm)
You can’t perform that action at this time.
0 commit comments