Skip to content

Commit 4bdebff

Browse files
authored
Merge branch 'main' into patch-1
2 parents e52cf3d + a409ea8 commit 4bdebff

File tree

6 files changed

+27
-19
lines changed

6 files changed

+27
-19
lines changed

server/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Bash Language Server
22

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

59
- Support for renaming symbol! https://github.com/bash-lsp/bash-language-server/pull/915

server/package.json

Lines changed: 1 addition & 1 deletion
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.1.0",
6+
"version": "5.1.1",
77
"main": "./out/server.js",
88
"typings": "./out/server.d.ts",
99
"bin": {

server/src/util/sh.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ 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` },
7778
]
7879

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

vscode-client/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Bash IDE
22

3+
## 1.40.0
4+
- Upgrade language server to 5.1.1 (rename capability).
5+
36
## 1.39.0
47
- Upgrade language server to 5.0.0.
58

vscode-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "A language server for Bash",
55
"author": "Mads Hartmann",
66
"license": "MIT",
7-
"version": "1.39.0",
7+
"version": "1.40.0",
88
"publisher": "mads-hartmann",
99
"repository": {
1010
"type": "git",
@@ -85,7 +85,7 @@
8585
"vscode:prepublish": "cd .. && pnpm compile"
8686
},
8787
"dependencies": {
88-
"bash-language-server": "5.0.0",
88+
"bash-language-server": "5.1.1",
8989
"vscode-languageclient": "8.1.0",
9090
"vscode-languageserver": "8.0.2"
9191
},

vscode-client/pnpm-lock.yaml

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)