Adds vim monkey-patch to edit files within Emacs

This commit is contained in:
William Carroll 2017-06-15 17:18:58 -04:00
parent 1cd470b85d
commit 708670590f

View file

@ -9,12 +9,21 @@ fi
if [ -n "$INSIDE_EMACS" ]; then
export EDITOR="emacsclient"
export EDITOR="edit-file-in-emacs.sh"
else
export EDITOR=$(which vim)
fi
vim () {
if [ -n "$INSIDE_EMACS" ]; then
emacsclient -e "(find-file-other-window \"$1\")"
else
eval "$EDITOR \"$1\""
fi
}
man () {
if [ -n "$INSIDE_EMACS" ]; then
emacsclient -e "(man \"$1\")"