vscode片段

参考资料

   https://blog.csdn.net/maokelong95/article/details/54379046

 

"狂客注释": {
"prefix": "k##",
"body": [
"/*****",
"*作者:狂客",
"*QQ:214109721",
"*时间:$CURRENT_YEAR-$CURRENT_MONTH-$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE",
"*功能:无",
"*参数:无",
"*返回值:无",
"*****/",
],
"description": "狂客注释"
}

 

{
// Place your 全局 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"
// }
"kk_class":{
"prefix": "k###",
"body": [
"/*****",
"// +----------------------------------------------------------------------",
"// | $1",
"// +----------------------------------------------------------------------",
"// | 作者:狂客, QQ:214109721",
"// +----------------------------------------------------------------------",
"*****/"
],
"description": "KuangKe Class Definition"
},
"kk_func": {
"prefix": "k##",
"body": [
"/*****",
"*作者:狂客",
"*QQ:214109721",
"*功能:$1",
"*参数:无",
"*返回值:无",
"*****/"
],
"description": "KuangKe Function Definition"
}
}
posted @ 2019-05-10 10:31  狂客  阅读(183)  评论(0编辑  收藏  举报