folding.el なんか悔しいので、ちょっと便利かも知れない Emacs Lisp の紹介。上のURLから folding.el をダウンロードしてきて、load-path の通ったところにおいておく。.emacs には (autoload 'folding-mode "folding-mode" nil t)とでも書いておいて、適当なファイルで M-x folding-mode とやると。 すると、 // {{{ includes #include <iostream> // }}} // {{{ constants #define MESSAGE "Hello World" // }}} // {{{ main() int main(int argc, char** argv) { std::cout << MESSAGE << std::endl; return 0; } //