CMake mode for emacs 提供了一些好的功能,一直都没有注意到这个mode,今天正式开始使用。
首先,下载cmake-mode.el文件
http://www.cmake.org/CMakeDocs/cmake-mode.el
放到自己的emacs plugin目录下:
/opt/emacs_plugins/cmake-mode.el
然后在.emacs文件中设置如下:
- (setq load-path (cons (expand-file-name "/opt/emacs_plugins") load-path))
- (require 'cmake-mode)
- (setq auto-mode-alist
- (append '(("CMakeLists\\.txt\\'" . cmake-mode)
- ("\\.cmake\\'" . cmake-mode))
- auto-mode-alist))
(setq load-path (cons (expand-file-name "/opt/emacs_plugins") load-path)) (require 'cmake-mode) (setq auto-mode-alist (append '(("CMakeLists\\.txt\\'" . cmake-mode) ("\\.cmake\\'" . cmake-mode)) auto-mode-alist))
重新启动Emacs后,打开我的CMake工程的CMakeLists.txt文件,里面command关键字都已经变成高亮。
M-x 执行 cmake-help-list-commands 后,可以看到所有当前CMake版本支持的命令。
将光标停在某个command(比如AUX_SOURCE_DIRECTORY)之上,运行cmake-help-command 会看到关于AUX_SOURCE_DIRECTORY command的详细介绍。
其他功能后面慢慢体会吧。