2011-04-13 15:34:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-06-20 19:15:55 +00:00
|
|
|
_emacsfun()
|
2016-06-17 10:12:59 +00:00
|
|
|
{
|
2016-07-18 22:20:59 +00:00
|
|
|
# get list of emacs frames.
|
|
|
|
frameslist=`emacsclient --alternate-editor '' --eval '(frame-list)' 2>/dev/null | egrep -o '(frame)+'`
|
2011-10-10 16:04:13 +00:00
|
|
|
|
2016-07-18 22:20:59 +00:00
|
|
|
if [ "$(echo "$frameslist" | sed -n '$=')" -ge 2 ] ;then
|
2016-06-17 10:12:59 +00:00
|
|
|
# prevent creating another X frame if there is at least one present.
|
|
|
|
emacsclient --alternate-editor "" "$@"
|
2016-07-18 22:20:59 +00:00
|
|
|
else
|
|
|
|
# Create one if there is no X window yet.
|
|
|
|
emacsclient --alternate-editor "" --create-frame "$@"
|
2016-06-17 10:12:59 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# adopted from https://github.com/davidshepherd7/emacs-read-stdin/blob/master/emacs-read-stdin.sh
|
|
|
|
# If the second argument is - then write stdin to a tempfile and open the
|
|
|
|
# tempfile. (first argument will be `--no-wait` passed in by the plugin.zsh)
|
2016-06-20 19:15:55 +00:00
|
|
|
if [ "$#" -ge "2" -a "$2" = "-" ]
|
|
|
|
then
|
2016-06-17 10:12:59 +00:00
|
|
|
tempfile="$(mktemp emacs-stdin-$USER.XXXXXXX --tmpdir)"
|
|
|
|
cat - > "$tempfile"
|
|
|
|
_emacsfun --no-wait $tempfile
|
2011-04-13 15:34:51 +00:00
|
|
|
else
|
2016-06-17 10:12:59 +00:00
|
|
|
_emacsfun "$@"
|
2011-04-13 15:34:51 +00:00
|
|
|
fi
|