我刚刚发现了tabbar,一种在emacs中提供类似Firefox的标签的小模式.
我还将org-mode修改为次要模式,并将其与其他主要模式一起用于代码折叠和组织我的代码,例如:(ahk-org-mode)
你最喜欢的小模式是什么.
您是否已将主要模式转换为次要模式,以便将其与其他主要模式一起使用?
Boz*_*sov 26
autopair - Automatically pair braces and quotes in emacs like TextMate
paredit - ultimate sexp editing mode, one cannot do serious Lisp programming without it
flyspell and cousing flyspell-prog-mode - great on the fly spellchecking
eldoc - on the fly hints about function parameters, etc in several languages like Emacs Lisp, Perl...
yasnippet - template expansion framework ala TextMate bundles
auto-revert-mode - reverts buffers, if underlying files have been changed externally
hl-line - highlights the current line
windmove - easier navigation between many open windows in Emacs
show-paren-mode - highlight matching parenthesis, making it easier to spot errors with their pairing
All those minor modes are simply Godsend! I cannot live without them and they make my whole editing experience that much more enjoyable and productive...
Btw you can see much of the customizations and modes that I use in my configuration publicly available here(most of the minor mode stuff is in misc-config.el). I also recommend to everyone to follow the excellent blog Emacs Fu, when I've picked many interesting modes over the past couple of years.