我喜欢使用Emacs的shell模式,但它有一些缺陷。其中之一是,当shell命令尝试调用编辑器时,打开新缓冲区不够聪明。例如,将环境变量VISUAL设置为vim,我从svn propedit得到以下内容:
原文链接:/bash/387775.html$ svn propedit svn:externals . "svn-prop.tmp" 2L,149C[1;1H ~ [4;1H~ [5;1H~ [6;1H~ [7;1H~ ...
(从代表中可能很难说,但这是一个可怕的丑陋的混乱。)
使用VISUAL设置为“emacs -nw”,我得到
$ svn propedit svn:externals . emacs: Terminal type "dumb" is not powerful enough to run Emacs. It lacks the ability to position the cursor. If that is not the actual type of terminal you have,use the Bourne shell command `TERM=... export TERM' (C-shell: `setenv TERM ...') to specify the correct type. It may be necessary to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.svn: system('emacs -nw svn-prop.tmp') returned 256
(它与VISUAL设置为只是emacs,但只能从Emacs X窗口内部,而不是在终端会话内)。
有没有办法让shell模式在这里做正确的事情,代表命令行进程打开一个新的缓冲区?