Skip to content

Commit 04a2cb3

Browse files
committed
Revert help flag
1 parent 84dccb5 commit 04a2cb3

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

server/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Bash Language Server
22

3+
## 5.3.3
4+
5+
- Revert "Add --help fallback for documentation" https://github.com/bash-lsp/bash-language-server/pull/1052
6+
37
## 5.3.2
48

59
- Handle non-zero exit status when formatting using shfmt https://github.com/bash-lsp/bash-language-server/pull/1163

server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A language server for Bash",
44
"author": "Mads Hartmann",
55
"license": "MIT",
6-
"version": "5.3.2",
6+
"version": "5.3.3",
77
"main": "./out/server.js",
88
"typings": "./out/server.d.ts",
99
"bin": {

server/src/util/sh.ts

-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ export async function getShellDocumentationWithoutCache({
7474
// The default line width of the terminal works fine for hover, but could be better
7575
// for completions.
7676
{ type: 'man', command: `man -P cat ${word} | col -bx` },
77-
{ type: 'help flag', command: `${word} --help | col -bx` },
7877
]
7978

8079
for (const { type, command } of DOCUMENTATION_COMMANDS) {

0 commit comments

Comments
 (0)