File tree Expand file tree Collapse file tree 5 files changed +27
-3
lines changed Expand file tree Collapse file tree 5 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Bash Language Server
2
2
3
+ ## 1.3.0
4
+
5
+ - Improved completions by adding support for
6
+ - Suggestions based on the programs on your PATH [ #17 ] [ 17 ]
7
+ - Suggestions based on the bash builtins [ #33 ] [ 33 ]
8
+
9
+ - Implemented the ` onHover ` message that now shows documentation for programs
10
+ and builtins when you hover your cursor over words in the document. [ #17 ] [ 17 ]
11
+ [ #33 ] [ 33 ]
12
+
13
+ - Improved outline hierarchy [ #31 ] [ 31 ]
14
+
15
+ - Upgraded tree-sitter bash and other libraries. [ #28 ] [ 28 ]
16
+
3
17
## 1.1.2
4
18
5
19
Update ` tree-sitter ` to ` 0.10.0 ` and ` tree-sitter-bash ` to ` 0.6.0 ` . This
6
20
improves the Bash parser. There are still known parsing issues. For more
7
21
information following the progress on this issue over at
8
22
[ tree-sitter/tree-sitter-bash #9 ] ( https://github.com/tree-sitter/tree-sitter-bash/issues/9 )
23
+
24
+ [ 17 ] : https://github.com/mads-hartmann/bash-language-server/pull/17
25
+ [ 28 ] : https://github.com/mads-hartmann/bash-language-server/pull/28
26
+ [ 31 ] : https://github.com/mads-hartmann/bash-language-server/pull/31
27
+ [ 33 ] : https://github.com/mads-hartmann/bash-language-server/pull/33
Original file line number Diff line number Diff line change 3
3
"description" : " A language server for Bash" ,
4
4
"author" : " Mads Hartmann" ,
5
5
"license" : " MIT" ,
6
- "version" : " 1.1.2 " ,
6
+ "version" : " 1.3.0 " ,
7
7
"publisher" : " mads-hartmann" ,
8
8
"main" : " out/server.js" ,
9
9
"bin" : {
Original file line number Diff line number Diff line change 1
1
# Bash IDE
2
2
3
+ ## 1.3.0
4
+
5
+ The client will now prompt to upgrade the Bash Language Server if you're running
6
+ an old version.
7
+
3
8
## 1.2.1
4
9
5
10
- Attempt to support windows by appending ` cmd ` to the command to start the
Original file line number Diff line number Diff line change 4
4
"description" : " A language server for Bash" ,
5
5
"author" : " Mads Hartmann" ,
6
6
"license" : " MIT" ,
7
- "version" : " 1.2.1 " ,
7
+ "version" : " 1.3.0 " ,
8
8
"publisher" : " mads-hartmann" ,
9
9
"repository" : {
10
10
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
10
10
11
11
import { getServerInfo } from './util'
12
12
13
- const MINIMUM_SERVER_VERSION = '1.1.2 '
13
+ const MINIMUM_SERVER_VERSION = '1.3.0 '
14
14
15
15
export async function activate ( context : ExtensionContext ) {
16
16
try {
You can’t perform that action at this time.
0 commit comments