Browse Source

Improve emacsclient frame detection

master
Riyyi 4 years ago
parent
commit
7196c2f7cd
  1. 2
      .scripts/alias.sh

2
.scripts/alias.sh

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

Loading…
Cancel
Save