Files
shell-scripting-templates/.vscode/shellscript.code-snippets
2021-10-27 11:16:49 -04:00

81 lines
2.3 KiB
Plaintext

{
// Place your dotfiles-private workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
// "Print to console": {
// "scope": "javascript,typescript",
// "prefix": "log",
// "body":
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Comment block": {
"scope": "shellscript",
"prefix": "_c",
"body": [
"\t\t# DESC:",
"\t\t#\t\t\t\t\t$1",
"\t\t# ARGS:",
"\t\t#\t\t\t\t\t\\$1 (Required):\t",
"\t\t#\t\t\t\t\t\\$2 (Optional):\t",
"\t\t# OUTS:",
"\t\t#\t\t\t\t\t 0: Success",
"\t\t#\t\t\t\t\t 1: Failure",
"\t\t#\t\t\t\t\tstdout: ",
"\t\t# USAGE:",
"\t\t#\t\t\t\t\t_nameOfFunc_ \"@\""
],
"description": "Comment block for a function"
},
"_function_() {}": {
"scope": "shellscript",
"prefix": "_f",
"body": [
"_${1:name}_() {",
"\t\t# DESC:",
"\t\t#\t\t\t\t\t$2",
"\t\t# ARGS:",
"\t\t#\t\t\t\t\t\\$1 (Required):\t",
"\t\t#\t\t\t\t\t\\$2 (Optional):\t",
"\t\t# OUTS:",
"\t\t#\t\t\t\t\t 0: Success",
"\t\t#\t\t\t\t\t 1: Failure",
"\t\t#\t\t\t\t\tstdout: ",
"\t\t# USAGE:",
"\t\t#\t\t\t\t\t_${1:name}_ \"@\"",
"\t\t",
"\t\t [[ $# == 0 ]] && fatal \"Missing required argument to ${FUNCNAME[0]}\"",
"\t\t",
"}"
],
"description": "Add a new function"
},
"value": {
"scope": "shellscript",
"prefix": "_",
"body": ["\"\\${$0}\""],
"description": ""
},
"subshell": {
"scope": "shellscript",
"prefix": "__",
"body": ["\"\\$($0)\""],
"description": ""
},
"while read loop": {
"scope": "shellscript",
"prefix": "_w",
"body": [
"while read -r ${1:VARIABLE}; do",
"\t\techo \"\\${${1:VARIABLE}}\"",
"done < <(COMMAND)"
]
}
}