一个脚本,我一直这么用的.
弄emacsclient我闲麻烦.
用了--foreach选项,就是每次搞一个.
#!/usr/bin/perl
# My Emacs bash script.
if ($ARGV[0] eq '--foreach') {
shift @ARGV;
foreach (@ARGV) {
system "emacs -Q -nw -l ~/.emacs_q $_";
}
} else {
exec "emacs -Q -nw -l ~/.emacs_q @ARGV";
}
gaohermes 于 2010-09-11 22:46:22发表:
thanks a lot
刘冲 于 2010-02-07 03:06:19发表:
http://lifegoo.pluskid.org/wiki/FasterEmacs.html
再转一篇别人的文章,方便大家.
刘冲 于 2010-02-07 03:04:48发表:
补充:
有 -nw的时候(严格来说是在终端下,有gui的时候就没有这种情况),-- 形式的命令不起作用(见:
http://www.linux110.com/bbs/thread-174838-1-1.html),
所以没有处理这种情况,这种情况下,应该使用gui的emacs,或者使用vim.
(谁有解决办法告诉我下)