Skip to content

Commit 1d4a112

Browse files
authored
Merge pull request #685 from bash-lsp/fix-global-declarations
Global declarations: include grouped variables and functions
2 parents 1b7695c + 43be048 commit 1d4a112

File tree

7 files changed

+142
-85
lines changed

7 files changed

+142
-85
lines changed

server/CHANGELOG.md

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

3+
## 4.5.1
4+
5+
- Include grouped variables and functions when finding global declarations https://github.com/bash-lsp/bash-language-server/pull/685
6+
- Skip completions in the middle of a non word when the following characters is not an empty list or whitespace. https://github.com/bash-lsp/bash-language-server/pull/684
7+
- Remove infrequent and rather useless "Failed to parse" diagnostics (and thereby the `HIGHLIGHT_PARSING_ERRORS` and `highlightParsingErrors` configuration option) – the tree sitter parser is actually rather good at error recovery. Note that these messages will now be shown in the log. https://github.com/bash-lsp/bash-language-server/pull/686
8+
39
## 4.5.0
410

511
- Include 30 snippets for language constructs (e.g. `if`), builtins (e.g. `test`), expansions (e.g. `[##]`), and external programs (e.g. `sed`) https://github.com/bash-lsp/bash-language-server/pull/683

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": "4.5.0",
6+
"version": "4.5.1",
77
"main": "./out/server.js",
88
"typings": "./out/server.d.ts",
99
"bin": {

0 commit comments

Comments
 (0)