mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 09:58:47 -07:00
11 lines
260 B
Bash
Executable File
11 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
|