11 lines
191 B
Plaintext
11 lines
191 B
Plaintext
## Emacs aliases
|
|
alias e="emacsclient"
|
|
alias en="e -n"
|
|
alias et="e -t"
|
|
alias ec="e -c"
|
|
alias ecn="ec -n"
|
|
|
|
function magit() {
|
|
ecn -e '(magit-status-no-new-window "'"$(realpath ${1-.})"'")'
|
|
}
|