2007年10月29日星期一

Emacs中建立文件自动关联mode

一次性关联
(
setq auto-mode-alist
;; 将文件模式和文件后缀关联起来。
( append '(("\\.py\\'" . python-mode)
("\\.s?html?\\'" . html-helper-mode)
(" \\.asp\\'" . html-helper-mode)
("\\.phtml\\'" . html-helper-mode)
("\\.css\\'" . css-mode) )
auto-mode-alist)
)
单个文件关联
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))


--
一步一步教你从互联网赚钱 http://www.zqzn.com/index.asp?rid=key480769
投资理财 http://li-cai.blogspot.com/

没有评论: