mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
2acae3797b
This change looks at the frame type of the open frames ('framep) and looks if they're of the type requested based on the arguments passed to emacsclient (-nw/-t/--tty require tty frames, otherwise we need graphical frames). NOTE: this code considers anything different than t as graphical terminals, including MS-DOS types (pc). I don't have such a setup to test if this is correct.
37 lines
1.2 KiB
Bash
Executable file
37 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
emacsfun() {
|
|
local cmd frames
|
|
|
|
# Build the Emacs Lisp command to check for suitable frames
|
|
# See https://www.gnu.org/software/emacs/manual/html_node/elisp/Frames.html#index-framep
|
|
case "$*" in
|
|
*-t*|*--tty*|*-nw*) cmd="(memq 't (mapcar 'framep (frame-list)))" ;; # if != nil, there are tty frames
|
|
*) cmd="(delete 't (mapcar 'framep (frame-list)))" ;; # if != nil, there are graphical terminals (x, w32, ns)
|
|
esac
|
|
|
|
# Check if there are suitable frames
|
|
frames="$(emacsclient -a '' -n -e "$cmd" 2>/dev/null)"
|
|
|
|
# Only create another X frame if there isn't one present
|
|
if [ -z "$frames" -o "$frames" = nil ]; then
|
|
emacsclient --alternate-editor "" --create-frame "$@"
|
|
return $?
|
|
fi
|
|
|
|
emacsclient --alternate-editor "" "$@"
|
|
}
|
|
|
|
|
|
# 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)
|
|
if [ $# -ge 2 -a "$2" = "-" ]; then
|
|
tempfile="$(mktemp --tmpdir emacs-stdin-$USERNAME.XXXXXXX 2>/dev/null \
|
|
|| mktemp -t emacs-stdin-$USERNAME)" # support BSD mktemp
|
|
cat - > "$tempfile"
|
|
emacsfun --no-wait "$tempfile"
|
|
return $?
|
|
fi
|
|
|
|
emacsfun "$@"
|