Files
linux-config/sh.snippets
Kevin Mok 8877960762 snippets (new), Bash functions
- LaTeX: align, piecewise function
- snippets: tabstops, LaTeX environment
- .gitignore
2018-01-31 01:58:04 -05:00

15 lines
215 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