aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-11-07 09:57:15 +0800
committerGuangxiong Lin <[email protected]>2022-11-07 09:57:29 +0800
commitdadc0f8b563c32ff57df7a4ec5bb16387368be9f (patch)
treec84918b3c05e1c7918ac0da3ae6cfc486d14dade /bin
parent85e6312355cfb8a0f1774a05b1e671bc89a97235 (diff)
downloaddotfiles-dadc0f8b563c32ff57df7a4ec5bb16387368be9f.tar.gz
dotfiles-dadc0f8b563c32ff57df7a4ec5bb16387368be9f.tar.bz2
dotfiles-dadc0f8b563c32ff57df7a4ec5bb16387368be9f.zip
Update emacs config
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ek6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ek b/bin/ek
index 4420327..a4a9efe 100755
--- a/bin/ek
+++ b/bin/ek
@@ -1,11 +1,11 @@
#!/usr/bin/env bash
server_running () {
- emacsclient -a "false" -e "(boundp 'server-process)"
+ emacsclient -a "false" -e "(boundp 'server-process)" "$@"
}
-if [ "t" == "$(server_running)" ]; then
- emacsclient -e '(kill-emacs)'
+if [ "t" == "$(server_running "$@")" ]; then
+ emacsclient -e '(kill-emacs)' "$@"
echo "Emacs server is killed"
else
echo "Emacs server is not running"