diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-02-06 14:33:14 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-02-06 14:33:14 +0800 |
commit | c1e42760ab73d109632cd98deb05eaa7b77263e7 (patch) | |
tree | aeb5abbff25080b75224521819960a710fd53106 /_zsh/80-emacs.zsh | |
parent | f68035808bebef832d4736f2875e4dd80428f94a (diff) | |
download | dotfiles-c1e42760ab73d109632cd98deb05eaa7b77263e7.tar.bz2 |
Minor tweaks
Diffstat (limited to '_zsh/80-emacs.zsh')
-rw-r--r-- | _zsh/80-emacs.zsh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/_zsh/80-emacs.zsh b/_zsh/80-emacs.zsh index 5114cc8..88a4b90 100644 --- a/_zsh/80-emacs.zsh +++ b/_zsh/80-emacs.zsh @@ -28,7 +28,8 @@ if exists emacsclient; then local create_frame="" fi - command env LC_CTYPE=zh_CN.UTF-8 emacsclient --alternate-editor "" $create_frame "$@" + command env LC_CTYPE=zh_CN.UTF-8 \ + emacsclient --alternate-editor "" $create_frame "$@" } alias emacs='_emacsclient -t' |