rekahsoft
/
dot-files
Archiviert
1
0
Fork 0

Fix EDITOR environment variable issue for emacs

Have programs using the $EDITOR environment variable use emacsclient if
a daemon is running but otherwise fallback to plain emacs.

See: http://www.emacswiki.org/emacs/EmacsAsDaemon

Signed-off-by: Collin J. Doering <rekahsoft@gmail.com>
Dieser Commit ist enthalten in:
Collin J. Doering 2014-10-23 03:26:23 -04:00 committet von Collin J. Doering
Ursprung 7c8f081678
Commit 6e6c574abc
2 geänderte Dateien mit 7 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -66,4 +66,7 @@ fi
#eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
# Default editor
export EDITOR="emacs -nw"
export ALTERNATE_EDITOR=""
export EDITOR="emacsclient -t" # $EDITOR should open in terminal
export VISUAL="emacsclient -c -a emacs" # $VISUAL opens in GUI with non-daemon as alternate

4
.zshrc
Datei anzeigen

@ -99,4 +99,6 @@ fi
#eval `keychain --eval --timeout 10 --quiet --agents ssh id_rsa`
# Default editor
export EDITOR="emacs -nw"
export ALTERNATE_EDITOR=""
export EDITOR="emacsclient -t" # $EDITOR should open in terminal
export VISUAL="emacsclient -c -a emacs" # $VISUAL opens in GUI with non-daemon as alternate