-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip linting zsh files #694
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
akurtakov
added a commit
to akurtakov/shellwax
that referenced
this pull request
Feb 24, 2023
Impovements in the LS: - Support for bash options auto completions when using Brew or when `pkg-config` fails, but bash completions are found in `"${PREFIX:-/usr}/share/bash-completion/bash_completion"` bash-lsp/bash-language-server#717 - Remove diagnostics for missing nodes that turns out to be unstable (this was introduced in 4.5.3) bash-lsp/bash-language-server#708 - Fix the ShellCheck code action feature that for some clients did not return any code actions. bash-lsp/bash-language-server#700 - Support parsing `: "${VARIABLE:="default"}"` as a variable definition bash-lsp/bash-language-server#693 - Use sourcing info even if `includeAllWorkspaceSymbols` is true to ensure that files not matching the `globPattern` (and therefore not part of the background analysis) is still resolved based on source commands. bash-lsp/bash-language-server#695 - Skip running ShellCheck for unsupported zsh files. We will still try for files without a shebang and without a known file extension. bash-lsp/bash-language-server#694 - Fix issue where some features would work as expected in case of a syntax issue bash-lsp/bash-language-server#691 - Fixed `onReferences` to respect the `context.includeDeclaration` flag bash-lsp/bash-language-server#688 - Removed unnecessary dependency `urijs` bash-lsp/bash-language-server#688 - Include grouped variables and functions when finding global declarations bash-lsp/bash-language-server#685 - Skip completions in the middle of a non word when the following characters is not an empty list or whitespace. bash-lsp/bash-language-server#684 - 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. bash-lsp/bash-language-server#686 - Include 30 snippets for language constructs (e.g. `if`), builtins (e.g. `test`), expansions (e.g. `[##]`), and external programs (e.g. `sed`) bash-lsp/bash-language-server#683 - Improve source command parser and include diagnostics when parser fails bash-lsp/bash-language-server#673 - Fix `onHover` bug where sourced symbols on the same line as a reference would hide documentation bash-lsp/bash-language-server#673
akurtakov
added a commit
to eclipse-shellwax/shellwax
that referenced
this pull request
Feb 24, 2023
Impovements in the LS: - Support for bash options auto completions when using Brew or when `pkg-config` fails, but bash completions are found in `"${PREFIX:-/usr}/share/bash-completion/bash_completion"` bash-lsp/bash-language-server#717 - Remove diagnostics for missing nodes that turns out to be unstable (this was introduced in 4.5.3) bash-lsp/bash-language-server#708 - Fix the ShellCheck code action feature that for some clients did not return any code actions. bash-lsp/bash-language-server#700 - Support parsing `: "${VARIABLE:="default"}"` as a variable definition bash-lsp/bash-language-server#693 - Use sourcing info even if `includeAllWorkspaceSymbols` is true to ensure that files not matching the `globPattern` (and therefore not part of the background analysis) is still resolved based on source commands. bash-lsp/bash-language-server#695 - Skip running ShellCheck for unsupported zsh files. We will still try for files without a shebang and without a known file extension. bash-lsp/bash-language-server#694 - Fix issue where some features would work as expected in case of a syntax issue bash-lsp/bash-language-server#691 - Fixed `onReferences` to respect the `context.includeDeclaration` flag bash-lsp/bash-language-server#688 - Removed unnecessary dependency `urijs` bash-lsp/bash-language-server#688 - Include grouped variables and functions when finding global declarations bash-lsp/bash-language-server#685 - Skip completions in the middle of a non word when the following characters is not an empty list or whitespace. bash-lsp/bash-language-server#684 - 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. bash-lsp/bash-language-server#686 - Include 30 snippets for language constructs (e.g. `if`), builtins (e.g. `test`), expansions (e.g. `[##]`), and external programs (e.g. `sed`) bash-lsp/bash-language-server#683 - Improve source command parser and include diagnostics when parser fails bash-lsp/bash-language-server#673 - Fix `onHover` bug where sourced symbols on the same line as a reference would hide documentation bash-lsp/bash-language-server#673
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #689