update
This commit is contained in:
parent
80cdfee138
commit
b9c532ce5e
5 changed files with 38 additions and 22 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue