snippets (new), Bash functions

- LaTeX: align, piecewise function
- snippets: tabstops, LaTeX environment
- .gitignore
This commit is contained in:
2018-01-31 01:58:04 -05:00
parent 872f0e5e0e
commit 8877960762
4 changed files with 38 additions and 8 deletions

View File

@@ -1,3 +1,14 @@
snippet alias "Custom alias"
alias ${1:name}="${2:command}"
endsnippet
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