- UltiSnips: Moved alias snippets from sh to all. - Aliases: Snippet, commit message. - Vim: Map fold method, preview and line break to leader keys.
18 lines
254 B
Plaintext
18 lines
254 B
Plaintext
snippet alias "Custom alias"
|
|
alias ${1:name}="${2:cmd}"
|
|
endsnippet
|
|
|
|
snippet 1lf "One-line function"
|
|
${1:name}() { ${2:cmd} ; }
|
|
endsnippet
|
|
|
|
snippet mlf "Multi-line function"
|
|
${1:name}() {
|
|
${2:cmd}
|
|
}
|
|
endsnippet
|
|
|
|
snippet ltx "LaTeX" i
|
|
LaTeX
|
|
endsnippet
|