You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/.vscode/command.code-snippets

16 lines
318 B

{
"实现命令": {
"prefix": "command",
"body": [
"export class Command_$1 implements Command",
"{",
" async exec()",
" { ",
" $2",
" }",
"}"
],
"description": "实现命令"
}
}