mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
closes https://github.com/coder/coder.com/issues/666 [preview](https://coder.com/docs/@666-unheading-premium/user-guides/workspace-scheduling#autostop-requirement) --------- Co-authored-by: EdwardAngert <2408959-EdwardAngert@users.noreply.gitlab.com> Co-authored-by: EdwardAngert <17991901+EdwardAngert@users.noreply.github.com>
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
{
|
|
// For info about snippets, visit https://code.visualstudio.com/docs/editor/userdefinedsnippets
|
|
|
|
"admonition": {
|
|
"prefix": "#callout",
|
|
"body": [
|
|
"<blockquote class=\"admonition ${1|caution,important,note,tip,warning|}\">\n",
|
|
"${TM_SELECTED_TEXT:${2:add info here}}\n",
|
|
"</blockquote>\n"
|
|
],
|
|
"description": "callout admonition caution info note tip warning"
|
|
},
|
|
"fenced code block": {
|
|
"prefix": "#codeblock",
|
|
"body": ["```${1|apache,bash,console,diff,Dockerfile,env,go,hcl,ini,json,lisp,md,powershell,shell,sql,text,tf,tsx,yaml|}", "${TM_SELECTED_TEXT}$0", "```"],
|
|
"description": "fenced code block"
|
|
},
|
|
"image": {
|
|
"prefix": "#image",
|
|
"body": "$0",
|
|
"description": "image"
|
|
},
|
|
"premium-feature": {
|
|
"prefix": "#premium-feature",
|
|
"body": [
|
|
"<blockquote class=\"info\">\n",
|
|
"${1:feature} ${2|is,are|} an Enterprise and Premium feature. [Learn more](https://coder.com/pricing#compare-plans).\n",
|
|
"</blockquote>"
|
|
]
|
|
},
|
|
"tabs": {
|
|
"prefix": "#tabs",
|
|
"body": [
|
|
"<div class=\"tabs\">\n",
|
|
"${1:optional description}\n",
|
|
"## ${2:tab title}\n",
|
|
"${TM_SELECTED_TEXT:${3:first tab content}}\n",
|
|
"## ${4:tab title}\n",
|
|
"${5:second tab content}\n",
|
|
"## ${6:tab title}\n",
|
|
"${7:third tab content}\n",
|
|
"</div>\n"
|
|
],
|
|
"description": "tabs"
|
|
}
|
|
}
|