remove newline from snippets
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
snippet attach
|
||||
data-dojo-attach-point="${1}"
|
||||
|
||||
snippet type
|
||||
data-dojo-type="${1}"
|
||||
|
||||
@@ -4,37 +4,27 @@ snippet def
|
||||
], function (${2}) {
|
||||
${3}
|
||||
});
|
||||
|
||||
snippet req
|
||||
require([
|
||||
${1}
|
||||
], function (${2}) {
|
||||
${3}
|
||||
});
|
||||
|
||||
snippet :
|
||||
${1:key}: ${2:value}
|
||||
|
||||
snippet :f
|
||||
${1:method_name}: function (${2:args}) {
|
||||
}
|
||||
|
||||
snippet fun
|
||||
function ${1:name}(${2:args}) {
|
||||
}
|
||||
|
||||
snippet log
|
||||
console.log("${1}")
|
||||
|
||||
console.log("${1}");
|
||||
snippet lred
|
||||
console.log("%c${1}", "font-weight:bold:color:red;");
|
||||
|
||||
console.log("%c${1}", "font-weight:bold;color:red;");
|
||||
snippet lgreen
|
||||
console.log("%c${1}", "font-weight:bold:color:green;");
|
||||
|
||||
console.log("%c${1}", "font-weight:bold;color:green;");
|
||||
snippet lblue
|
||||
console.log("%c${1}", "font-weight:bold:color:blue;");
|
||||
|
||||
console.log("%c${1}", "font-weight:bold;color:blue;");
|
||||
snippet lpurple
|
||||
console.log("%c${1}", "font-weight:bold:color:purple;");
|
||||
|
||||
console.log("%c${1}", "font-weight:bold;color:purple;");
|
||||
|
||||
Reference in New Issue
Block a user