First try custom emmet snippets

This commit is contained in:
Sebastian 2019-12-13 15:09:05 +01:00
parent 512c187ff6
commit 07cd0f16ab

View file

@ -0,0 +1,25 @@
{
"variables": {
"pyversion": "python3",
"charset": "utf8",
"indentation": " ",
"newline": "\n"
},
"python": {
"filters": "python",
"profile": "python",
"snippets": {
"shebang" : "#!/usr/bin/env ${pyversion}${newline}# coding: ${charset}${newline}${newline}",
"openfile" : "",
"savefile" : "",
"basepath" : ""
},
"abbreviations": {
"osfile": "openfile+savefile"
}
},
}