#目的
Pythonのプログラムを書く際にお約束の文言を毎回入力するの面倒なので,コードユニペットに登録してしまおうというヤツ
##こんな感じに
『shebang』って打とうとすると...
予測候補が表示されて
シバンが入力される
同様に『main』って打とうとすると...
予測候補が表示されて
↑が入力される
まぁ便利!!
##実際に登録してみる
-
ここに,下の内容を追記する ※既にある『{ }』内に記載すること!!
python.json"main":{ "prefix": "main", "body": [ "if __name__ == '__main__':", " ${1:pass}" ], "description": "main" }, "shebang":{ "prefix": "shebang", "body": [ "#!/usr/bin/env python3", "# coding: utf-8" ] }
-
最終的に,自分のpython.jsonファイルはこんな感じの内容になった
python.json
{
// Place your snippets for python here. Each snippet is defined under a snippet name and has a prefix, body and
// description. 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": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"main":{
"prefix": "main",
"body": [
"if __name__ == '__main__':",
" ${1:pass}"
],
"description": "main"
},
"shebang":{
"prefix": "shebang",
"body": [
"#!/usr/bin/env python3",
"# coding: utf-8"
]
}
}