legacy-dotfiles/emacs.d/20-c-mode.el
Tom Willemsen 4344bbeeda EMACS: Toggle header and source
Wrote a function to toggle views between a header and source file in
c-mode and locally bound this to F11.
2011-04-23 00:29:34 +02:00

3 lines
104 B
EmacsLisp

(add-hook 'c-mode-hook
(lambda ()
(local-set-key [f11] 'c-toggle-header-source)))