Visual Studio Code Snippets 설정 방법
PHP 단축키 설정
파일 > 기본설정 > 사용자 코드 조각 > 새 코드 조각 > html.json.code-snippets 입력
{
// Place your GLOBAL 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"
// }
"PHP Tag": {
"prefix": "php",
"body": "<?php $1 ?>"
},
"Inline Echo": {
"prefix": "phpp",
"body": "<?= $$1; ?>"
}
}
C언어 단축키 설정
파일 > 기본설정 > 코드 조각 구성 > c.json 에 아래와 같이 작성
"Main Function": {
"prefix": "!main",
"body": [
"#include <stdio.h>\n",
"int main(void)",
"{\n\t$1\n",
"\treturn 0;",
"}",
],
"description": "Snippets About stdio.h main"
},
"Printf Function": {
"prefix": "pf",
"body": [
"printf(\"$1\");",
],
"description": "Snippets About printf();"
}
C++ 단축키 설정
"Main Function": {
"prefix": "!main",
"body": [
"#include <iostream>",
"#include <string>",
"using namespace std;\n",
"int main(void)",
"{\n\t$1\n",
"\treturn 0;",
"}",
],
"description": "Snippets About main"
},
"cout Function": {
"prefix": "co",
"body": [
"cout << \"$1\" << endl;",
],
"description": "Snippets About cout << ;"
},
"cin Function": {
"prefix": "ci",
"body": [
"cin >> $1;",
],
"description": "Snippets About cin >> ;"
}
Comments