0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/emacs/emacsclient.sh

10 lines
260 B
Bash
Executable file

#!/bin/sh
# Starts emacs daemon if not already started.
x=`emacsclient --alternate-editor '' --eval '(x-display-list)' 2>/dev/null`
if [ -z "$x" ] ;then
emacsclient --alternate-editor "" --create-frame $@
else
emacsclient --alternate-editor "" $@
fi