File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Bash Language Server
2
2
3
+ ## 4.10.3
4
+
5
+ - Use cat as man pager https://github.com/bash-lsp/bash-language-server/pull/909
6
+
7
+ ## 4.10.2
8
+
9
+ - Bump semver development dependency causing false positive distributions security warnings https://github.com/bash-lsp/bash-language-server/pull/905
10
+
11
+
3
12
## 4.10.1
4
13
5
14
- Handle tree-sitter-bash parse errors gracefully
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" : " 4.10.2 " ,
6
+ "version" : " 4.10.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 @@ -53,7 +53,7 @@ const WORDS_WITHOUT_DOCUMENTATION = new Set([
53
53
] )
54
54
55
55
/**
56
- * Get documentation for the given word by usingZZ help and man.
56
+ * Get documentation for the given word by using help and man.
57
57
*/
58
58
export async function getShellDocumentationWithoutCache ( {
59
59
word,
@@ -73,7 +73,7 @@ export async function getShellDocumentationWithoutCache({
73
73
// We have experimented with setting MANWIDTH to different values for reformatting.
74
74
// The default line width of the terminal works fine for hover, but could be better
75
75
// for completions.
76
- { type : 'man' , command : `man ${ word } | col -bx` } ,
76
+ { type : 'man' , command : `man -P cat ${ word } | col -bx` } ,
77
77
]
78
78
79
79
for ( const { type, command } of DOCUMENTATION_COMMANDS ) {
You can’t perform that action at this time.
0 commit comments