mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-16 09:35:36 -05:00
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
72 lines
1.5 KiB
JSON
72 lines
1.5 KiB
JSON
{
|
|
"Insert bold text": {
|
|
"prefix": "bold",
|
|
"body": "**${1:${TM_SELECTED_TEXT}}**$0",
|
|
"description": "Insert bold text"
|
|
},
|
|
"Insert italic text": {
|
|
"prefix": "italic",
|
|
"body": "*${1:${TM_SELECTED_TEXT}}*$0",
|
|
"description": "Insert italic text"
|
|
},
|
|
"Insert quoted text": {
|
|
"prefix": "quote",
|
|
"body": "> ${1:${TM_SELECTED_TEXT}}",
|
|
"description": "Insert quoted text"
|
|
},
|
|
"Insert code": {
|
|
"prefix": "code",
|
|
"body": "`${1:${TM_SELECTED_TEXT}}`$0",
|
|
"description": "Insert code"
|
|
},
|
|
"Insert fenced code block": {
|
|
"prefix": "fenced codeblock",
|
|
"body": [
|
|
"```${1:language}",
|
|
"$0",
|
|
"```"
|
|
],
|
|
"description": "Insert fenced code block"
|
|
},
|
|
"Insert heading": {
|
|
"prefix": "heading",
|
|
"body": "# ${1:text}",
|
|
"description": "Insert heading"
|
|
},
|
|
"Insert unordered list": {
|
|
"prefix": "unordered list",
|
|
"body": [
|
|
"- ${1:first}",
|
|
"- ${2:second}",
|
|
"- ${3:third}",
|
|
"$0"
|
|
],
|
|
"description": "Insert unordered list"
|
|
},
|
|
"Insert ordered list": {
|
|
"prefix": "ordered list",
|
|
"body": [
|
|
"1. ${1:first}",
|
|
"2. ${2:second}",
|
|
"3. ${3:third}",
|
|
"$0"
|
|
],
|
|
"description": "Insert ordered list"
|
|
},
|
|
"Insert horizontal rule": {
|
|
"prefix": "horizontal rule",
|
|
"body": "----------\n",
|
|
"description": "Insert horizontal rule"
|
|
},
|
|
"Insert link": {
|
|
"prefix": "link",
|
|
"body": "[${1:text}](http://${2:link})$0",
|
|
"description": "Insert link"
|
|
},
|
|
"Insert image": {
|
|
"prefix": "image",
|
|
"body": "$0",
|
|
"description": "Insert image"
|
|
}
|
|
}
|