1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-18 20:10:27 +01:00

Replaced snipmate with UltiSnips, changed default font to DejaVu Mono

This commit is contained in:
2013-03-23 18:19:23 +01:00
parent e5369406eb
commit 2af24011b1
10 changed files with 368 additions and 5 deletions

View File

@@ -0,0 +1,33 @@
snippet dbg "put debugger line"
debugger;
endsnippet
snippet ass "console assert abbrv"
console.assert(${1:condition}, ${2:})${3:};
endsnippet
snippet log "console log abbrv"
console.log('${1:text_msg}'${2:, value})${3:};
endsnippet
snippet debug "console debug abbrv"
console.debug('${1:text_msg}'${2:, value})${3:};
endsnippet
snippet info "console info abbrv"
console.info('${1:text_msg}'${2:, value})${3:};
endsnippet
snippet warn "console warn abbrv"
console.warn('${1:text_msg}'${2:, value})${3:};
endsnippet
snippet tbl "console log in table manner"
console.table('${1:text_msg}'${2:, obj})${3:};
endsnippet
snippet str "use strict" !b
"use strict";
endsnippet
# vim:ft=snippets: