dotfiles/aliases.d/editor.zsh

9 lines
119 B
Bash
Raw Normal View History

alias e="$EDITOR"
# Use $FINDER and $EDITOR
if (( $+commands[$FINDER] )); then
e?() {
$EDITOR $($FINDER)
}
fi