llkjdsaljkdsalkj

This commit is contained in:
2025-03-20 15:51:12 +01:00
parent f0bed5a2bc
commit 5722f73907
3 changed files with 35 additions and 4 deletions

View File

@@ -20,6 +20,11 @@
"body": "if ${2:[[ $1 ]]}; then\n\t$0\nfi",
"description": "Bash snippet 'if'"
},
"elif": {
"prefix": "elif",
"body": "elif ${2:[[ $1 ]]}; then$0",
"description": "Bash snippet 'elif'"
},
"while": {
"prefix": "while",
"body": "while read ${1:line}; do\n\t$2\ndone$0",