1: 删除空行
M-x flush-lines ^$ delete all the blank line in buffer
M-x replace-regexp RET ^ C-q C-j $ RET RET delete multiple line to single line in buffer
2: add auto-complete to html-mode
(add-to-list 'ac-modes 'go-mode)
3: when you upgrade emacs to 24.1, CEDET issues a warning “Warning: cedet-called-interactively-p called with 0 arguments, but requires 1”, which can be suppressed by adding (setq byte-compile-warnings nil) in your .emacs file before CEDET is loaded
本文介绍了如何在Emacs中使用特定命令删除缓冲区中的空行,以及如何添加HTML模式的自动补全功能。同时,解决Emacs升级到24.1版本后CEDET出现的警告问题。
658

被折叠的 条评论
为什么被折叠?



