Add ec and et commands to launch emacsclient in a terminal and GUI respectively
Alan Pearce alan@bulbstudios.com
Tue, 08 Oct 2013 17:07:23 +0100
1 files changed, 24 insertions(+), 0 deletions(-)
jump to
M zsh/zshrc → zsh/zshrc
@@ -310,6 +310,8 @@ /^WM_CLASS/{sub(/.* =/, "instance:"); sub(/,/, "\nclass:"); print} /^WM_NAME/{sub(/.* =/, "title:"); print} /^WM_WINDOW_ROLE/{sub(/.* =/, "role:"); print}'\''' +alias et="emacsclient -t" + alias -g ...='../..' #Suffix aliases @@ -371,6 +373,28 @@ zrecompile -q -p $zcompargs $1 fi if [[ -n $2 ]]; then . $1 + fi +} + +emacs_change_focus () { + emacsclient -n -e "(select-frame-set-input-focus (selected-frame))" > /dev/null +} + +ec () { + local visibleFrames + visibleFrames=`emacsclient -e '(length (visible-frame-list))'` + if [[ $? -ne 0 ]]; then + print "Daemon not running" + return 1 + fi + + if [[ $visibleFrames -eq 1 ]]; then + emacsclient -n -c "$@" && emacs_change_focus + else + emacs_change_focus + if [[ $# -gt 0 ]]; then + emacsclient -n "$@" + fi fi }