This commit is contained in:
ManjaroOne666 2019-02-09 22:15:36 +00:00
commit b9c532ce5e
5 changed files with 38 additions and 22 deletions

View file

@ -2,10 +2,20 @@ snippet todo "// TODO"
// TODO $0
endsnippet
snippet cl "console.log( ... )"
snippet if "if ( ... ) { ... }"
if ($1) {
$0
}
endsnippet
snippet cl; "console.log( ... );"
console.log($0);
endsnippet
snippet cl "console.log( ... )"
console.log($0)
endsnippet
snippet if "if ( ... ) { ... }"
if ($1) {
$0