Skip to content

Commit f19249c

Browse files
EmilySeville7cfgEmilySeville7cfg
EmilySeville7cfg
authored and
EmilySeville7cfg
committed
fix(snippets): escape dollar sign
1 parent 329754d commit f19249c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/snippets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ export const SNIPPETS: BashCompletionItem[] = [
645645
insertText: [
646646
'_$1_completions()',
647647
'{',
648-
'\treadarray -t COMPREPLY < <(compgen -W "-h --help -v --version" "${COMP_WORDS[1]}")',
648+
'\treadarray -t COMPREPLY < <(compgen -W "-h --help -v --version" "\${COMP_WORDS[1]}")',
649649
'}',
650650
'',
651651
'complete -F _$1_completions ${1:command}',

0 commit comments

Comments
 (0)