Skip to content

Commit d6d4a23

Browse files
author
Emily Grace Seville
authored
feat(snippets): make labels more concise
1 parent 0d64942 commit d6d4a23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/snippets.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ export const SNIPPETS: BashCompletionItem[] = [
640640
insertText: '/dev/${1|null,stdin,stdout,stderr|}',
641641
},
642642
{
643-
label: 'option-parse',
643+
label: 'parse',
644644
documentation: 'option parsing',
645645
insertText: [
646646
'while getopts "hv${1:single-letter-options}" ${2:option}; do',
@@ -659,7 +659,7 @@ export const SNIPPETS: BashCompletionItem[] = [
659659
].join('\n'),
660660
},
661661
{
662-
label: 'option-manual-parse',
662+
label: 'manual-parse',
663663
documentation: 'manual option parsing',
664664
insertText: [
665665
'while [[ -n "\\$1" ]]; do',

0 commit comments

Comments
 (0)