blob: 8f4e6a165bf932570e60eb064da97741e187dee6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
===========================================================================
$NetBSD: MESSAGE,v 1.1.1.1 2007/02/24 20:47:25 wiz Exp $
You will need to add something like the following to your .emacs file to
autoload the CMake mode for Emacs.
(setq auto-mode-alist
(append
'(("CMakeLists\\.txt\\'" . cmake-mode))
'(("\\.cmake\\'" . cmake-mode))
auto-mode-alist))
(autoload 'cmake-mode "${LISPDIR}/cmake-mode.el" t)
===========================================================================
|