mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
10 lines
260 B
Bash
Executable file
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
|