Add some dired aliases and functions

This commit is contained in:
Alexander Rosenberg 2024-01-09 15:10:46 -08:00
parent 0464d98f61
commit bb0b1ede16
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -72,12 +72,26 @@ elif [[ -v INSIDE_EMACS ]]; then
alias e='emacsclient '
alias emacs='emacsclient '
alias n='emacsclient '
alias dired='emacsclient '
alias d='emacsclient '
else
export EDITOR='emacsclient -nw'
# Because I keep using n by mistake
alias n='emacsclient -nw '
alias e='emacsclient -nw '
alias emacs='emacsclient -nw '
function dired() {
if (( ${#} == 0 )); then
emacsclient -nw --eval '(dired ".")'
else
args=()
for arg; do
args+=(--eval "(dired \"${arg:gs#\\#\\\\#:gs#\"#\\\"#}\")")
done
emacsclient -nw ${args}
fi
}
alias d=dired
fi
export VISUAL="${EDITOR}"
alias se=sudoedit