Register new header file templates with auto-insert

This commit is contained in:
Henrik Lissner 2016-03-25 13:39:22 -04:00
parent 006d3268ca
commit b3feea7a4f

View file

@ -29,9 +29,10 @@
("/Makefile$" "__" makefile-gmake-mode) ("/Makefile$" "__" makefile-gmake-mode)
("/main\\.\\(cc\\|cpp\\)$" "__main.cpp" c++-mode) ("/main\\.\\(cc\\|cpp\\)$" "__main.cpp" c++-mode)
("/win32_\\.\\(cc\\|cpp\\)$" "__winmain.cpp" c++-mode) ("/win32_\\.\\(cc\\|cpp\\)$" "__winmain.cpp" c++-mode)
("\\.\\([Hh]\\|hpp\\)$" "__.h" c++-mode) ("\\.h\\(h\\|pp|xx\\)$" "__hpp" c++-mode)
("\\.\\(cc\\|cpp\\)$" "__.cpp" c++-mode) ("\\.\\(cc\\|cpp\\)$" "__cpp" c++-mode)
("\\.c$" "__.c" c-mode) ("\\.h$" "__h" c-mode)
("\\.c$" "__c" c-mode)
;; Elisp ;; Elisp
("-test\\.el$" "__" emacs-ert-mode) ("-test\\.el$" "__" emacs-ert-mode)