diff options
author | Robby Russell <robby@planetargon.com> | 2019-02-13 11:21:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-13 11:21:45 -0800 |
commit | 6cec86203a1afc918034470184007c0a23ad1260 (patch) | |
tree | 46d75f259e0d73a0923a7d8a28d975279644a899 /plugins | |
parent | 7d6f754b6807e312089179e3a4719145c58c7986 (diff) | |
parent | 6fe2028a1264a79330f16b1dbd6da8f59dc6854f (diff) | |
download | zsh-6cec86203a1afc918034470184007c0a23ad1260.tar.gz zsh-6cec86203a1afc918034470184007c0a23ad1260.tar.bz2 zsh-6cec86203a1afc918034470184007c0a23ad1260.zip |
Merge pull request #5714 from dluksza/master
Fix emacs client terminal
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/emacs/emacs.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/emacs/emacs.plugin.zsh b/plugins/emacs/emacs.plugin.zsh index db0ab13af..934c8d673 100644 --- a/plugins/emacs/emacs.plugin.zsh +++ b/plugins/emacs/emacs.plugin.zsh @@ -16,7 +16,7 @@ if "$ZSH/tools/require_tool.sh" emacsclient 24 2>/dev/null ; then # set EDITOR if not already defined. export EDITOR="${EDITOR:-${EMACS_PLUGIN_LAUNCHER}}" - alias emacs="$EMACS_PLUGIN_LAUNCHER --no-wait" + alias emacs="$EMACS_PLUGIN_LAUNCHER -t" alias e=emacs # open terminal emacsclient alias te="$EMACS_PLUGIN_LAUNCHER -nw" |