File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Bash Language Server
2
2
3
+ ## 5.3.3
4
+
5
+ - Revert "Add --help fallback for documentation" https://github.com/bash-lsp/bash-language-server/pull/1052
6
+
3
7
## 5.3.2
4
8
5
9
- Handle non-zero exit status when formatting using shfmt https://github.com/bash-lsp/bash-language-server/pull/1163
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" : " 5.3.2 " ,
6
+ "version" : " 5.3.3 " ,
7
7
"main" : " ./out/server.js" ,
8
8
"typings" : " ./out/server.d.ts" ,
9
9
"bin" : {
Original file line number Diff line number Diff line change @@ -74,7 +74,6 @@ export async function getShellDocumentationWithoutCache({
74
74
// The default line width of the terminal works fine for hover, but could be better
75
75
// for completions.
76
76
{ type : 'man' , command : `man -P cat ${ word } | col -bx` } ,
77
- { type : 'help flag' , command : `${ word } --help | col -bx` } ,
78
77
]
79
78
80
79
for ( const { type, command } of DOCUMENTATION_COMMANDS ) {
You can’t perform that action at this time.
0 commit comments