We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf5ba2 commit e6f759bCopy full SHA for e6f759b
server/src/server.ts
@@ -313,6 +313,9 @@ export default class BashServer {
313
314
const currentUri = params.textDocument.uri
315
316
+ // TODO: an improvement here would be to detect if the current word is
317
+ // not only a parameter expansion prefix, but also if the word is actually
318
+ // inside a parameter expansion (e.g. auto completing on a word $MY_VARIA).
319
const shouldCompleteOnVariables = word
320
? PARAMETER_EXPANSION_PREFIXES.has(word)
321
: false
0 commit comments