We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5d6f92 commit 1d6411cCopy full SHA for 1d6411c
src/extension.ts
@@ -17,20 +17,10 @@ export async function activate(context: ExtensionContext): Promise<void> {
17
return
18
}
19
20
- // TODO add config options:
21
-
22
const serverOptions: ServerOptions = {
23
command: (config.commandPath || require.resolve('bash-language-server/out/cli.js')),
24
args: ['start'],
25
- transport: TransportKind.stdio,
26
- options: {
27
- env: {
28
- // => https://github.com/bash-lsp/bash-language-server/blob/master/server/src/config.ts
29
- EXPLAINSHELL_ENDPOINT: config.explainshellEndpoint,
30
- GLOB_PATTERN: config.globPattern,
31
- HIGHLIGHT_PARSING_ERRORS: config.highlightParsingErrors.toString()
32
- }
33
+ transport: TransportKind.stdio
34
35
36
const clientOptions: LanguageClientOptions = {
0 commit comments