|
|
@ -7,9 +7,9 @@ depend() { |
|
|
|
emacs() { |
|
|
|
emacs() { |
|
|
|
# Create new frame (if there isnt one or no file is specified) |
|
|
|
# Create new frame (if there isnt one or no file is specified) |
|
|
|
if [ -z "$(pgrep -f emacsclient.*-c)" ] || [ "$1" = "" ]; then |
|
|
|
if [ -z "$(pgrep -f emacsclient.*-c)" ] || [ "$1" = "" ]; then |
|
|
|
emacsclient -a '' -c "$@" > /dev/null 2>&1 & |
|
|
|
setsid -f emacsclient -a '' -c "$@" > /dev/null 2>&1 |
|
|
|
else |
|
|
|
else |
|
|
|
emacsclient -a '' "$@" > /dev/null 2>&1 & |
|
|
|
setsid -f emacsclient -a '' "$@" > /dev/null 2>&1 |
|
|
|
fi |
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|