diff options
author | Alan Pearce | 2014-06-25 10:51:43 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-25 10:51:43 +0100 |
commit | 27c017fe0991a28f6a326cf32bdf1e8b11a539a8 (patch) | |
tree | aee77a73e4371f90ffb77fd33cb37454f76d20de /tag-zsh/config/zsh | |
parent | 16f7ed19544f4a6e25bd314bd7adbaa0cab174f8 (diff) | |
download | dotfiles-27c017fe0991a28f6a326cf32bdf1e8b11a539a8.tar.lz dotfiles-27c017fe0991a28f6a326cf32bdf1e8b11a539a8.tar.zst dotfiles-27c017fe0991a28f6a326cf32bdf1e8b11a539a8.zip |
zsh: Generalise ec function to work outside daemon
Diffstat (limited to 'tag-zsh/config/zsh')
-rwxr-xr-x | tag-zsh/config/zsh/zshrc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc index 9d2da84..451f212 100755 --- a/tag-zsh/config/zsh/zshrc +++ b/tag-zsh/config/zsh/zshrc @@ -341,14 +341,14 @@ emacs_change_focus () { } 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 |