diff options
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' |