Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/josa42/coc-sh

SH language server extension using bash-language-server for coc.nvim.
https://github.com/josa42/coc-sh

Last synced: about 2 months ago
JSON representation

SH language server extension using bash-language-server for coc.nvim.

Awesome Lists containing this project

README

        

# coc-sh

SH language server extension using [`bash-language-server`](https://github.com/bash-lsp/bash-language-server)
for [`coc.nvim`](https://github.com/neoclide/coc.nvim).

## Install

In your vim/neovim, run command:

:CocInstall coc-sh

## Features

See [`bash-language-server`](https://github.com/bash-lsp/bash-language-server)

## Configuration options

| Key | Description | Default |
|:---------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------|
| `sh.enable` | | `true` |
| `sh.commandPath` | | |
| `bashIde.backgroundAnalysisMaxFiles` | Maximum number of files to analyze in the background. Set to 0 to disable background analysis. | `500` |
| `bashIde.enableSourceErrorDiagnostics` | Enable diagnostics for source errors. Ignored if includeAllWorkspaceSymbols is true. | |
| `bashIde.explainshellEndpoint` | Configure explainshell server endpoint in order to get hover documentation on flags and options. | |
| `bashIde.globPattern` | Glob pattern for finding and parsing shell script files in the workspace. Used by the background analysis features across files. | `**/*@(.sh|.inc|.bash|.command)` |
| `bashIde.includeAllWorkspaceSymbols` | Controls how symbols (e.g. variables and functions) are included and used for completion, documentation, and renaming. If false (default and recommended), then we only include symbols from sourced files (i.e. using non dynamic statements like 'source file.sh' or '. file.sh' or following ShellCheck directives). If true, then all symbols from the workspace are included. | |
| `bashIde.logLevel` | Controls the log level of the language server. | `info` |
| `bashIde.shellcheckPath` | Controls the executable used for ShellCheck linting information. An empty string will disable linting. | `shellcheck` |
| `bashIde.shellcheckArguments` | Additional ShellCheck arguments. Note that we already add the following arguments: --shell, --format, --external-sources. | |
| `bashIde.shfmt.path` | Controls the executable used for Shfmt formatting. An empty string will disable formatting. | `shfmt` |
| `bashIde.shfmt.ignoreEditorconfig` | Ignore shfmt config options in .editorconfig (always use language server config) | |
| `bashIde.shfmt.languageDialect` | Language dialect to use when parsing (bash/posix/mksh/bats). | `auto` |
| `bashIde.shfmt.binaryNextLine` | Allow boolean operators (like && and ||) to start a line. | |
| `bashIde.shfmt.caseIndent` | Indent patterns in case statements. | |
| `bashIde.shfmt.funcNextLine` | Place function opening braces on a separate line. | |
| `bashIde.shfmt.keepPadding` | (Deprecated) Keep column alignment padding. | |
| `bashIde.shfmt.simplifyCode` | Simplify code before formatting. | |
| `bashIde.shfmt.spaceRedirects` | Follow redirection operators with a space. | |

Trigger completion in `coc-settings.json` to get complete list.

## Development

1. Run `npm run build` or `npm run build:watch`
2. Link extension: `npm run link` / `npm run unlink`

## License

[MIT © Josa Gesell](LICENSE)