Files
linux-config/UltiSnips/all.snippets
Kevin Mok f481b453aa Merge with UltiSnips repo (added fnct to merge)
- UltiSnips: Moved alias snippets from sh to all.

- Aliases: Snippet, commit message.
- Vim: Map fold method, preview and line break to leader keys.
2018-02-04 14:38:17 -05:00

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