summaryrefslogtreecommitdiff
path: root/.config/bash/rc.d/emacs.sh
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-27 18:12:11 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-27 18:12:11 -0400
commitb15e584c1a5a32b8a61feca0d954de6af15da8ed (patch)
tree179a8f12e182260b68162fbbedcb9ced4637a0c7 /.config/bash/rc.d/emacs.sh
parent6001786990501e849f04e018dccb0b5bf7e6d991 (diff)
Emacs: don't clobber server files of other hosts
Diffstat (limited to '.config/bash/rc.d/emacs.sh')
-rw-r--r--.config/bash/rc.d/emacs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/bash/rc.d/emacs.sh b/.config/bash/rc.d/emacs.sh
index 165d71e..b402932 100644
--- a/.config/bash/rc.d/emacs.sh
+++ b/.config/bash/rc.d/emacs.sh
@@ -1,7 +1,7 @@
#!/bin/bash
if [[ $TERM == eterm* ]]; then
- SELECTED_EDITOR='emacsclient'
+ SELECTED_EDITOR="emacsclient -f '$HOME/.emacs.d/server-$HOSTNAME/server'"
EDITOR=$SELECTED_EDITOR
VISUAL=$SELECTED_EDITOR
export SELECTED_EDITOR EDITOR VISUAL
@@ -10,7 +10,7 @@ if [[ $TERM == eterm* ]]; then
# _emacs_run LISP
_emacs_run() {
- emacsclient -e "$*" 2>/dev/null
+ emacsclient -f "$HOME/.emacs.d/server-$HOSTNAME/server" -e "$*" 2>/dev/null
}
# _emacs_quote UNQUOTED_STRING
_emacs_quote() {