红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

加快emacs启动!

发布时间:2010-02-07 02:40:38来源:红联作者:刘冲
一个脚本,我一直这么用的.
弄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";
}
文章评论

共有 3 条评论

  1. gaohermes 于 2010-09-11 22:46:22发表:

    thanks a lot

  2. 刘冲 于 2010-02-07 03:06:19发表:

    http://lifegoo.pluskid.org/wiki/FasterEmacs.html
    再转一篇别人的文章,方便大家.

  3. 刘冲 于 2010-02-07 03:04:48发表:

    补充:
    有 -nw的时候(严格来说是在终端下,有gui的时候就没有这种情况),-- 形式的命令不起作用(见:
    http://www.linux110.com/bbs/thread-174838-1-1.html),
    所以没有处理这种情况,这种情况下,应该使用gui的emacs,或者使用vim.

    (谁有解决办法告诉我下)