zsh: Generalise ec function to work outside daemon
Alan Pearce alan@alanpearce.co.uk
Wed, 25 Jun 2014 10:51:43 +0100
1 files changed, 3 insertions(+), 3 deletions(-)
jump to
M tag-zsh/config/zsh/zshrc → tag-zsh/config/zsh/zshrc
@@ -341,14 +341,14 @@ emacsclient -n -e "(select-frame-set-input-focus (selected-frame))" > /dev/null } ec () { - local visibleFrames - visibleFrames=`emacsclient -e '(length (visible-frame-list))'` + local frameNeeded + frameNeeded=`emacsclient -e '(>= (if (daemonp) 2 1) (length (visible-frame-list)))'` if [[ $? -ne 0 ]]; then print "Daemon not running" return 1 fi - if [[ $visibleFrames -eq 1 ]]; then + if [[ $frameNeeded == 't' ]]; then emacsclient -n -c "$@" && emacs_change_focus else emacs_change_focus