Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在重写我的.emacs. 目前,.ml文件被很好地突出显示,而没有.mll或.mly文件的模式。这是我的.emacs,有人知道如何修改吗?
.emacs
.ml
.mll
.mly
另外,我在使用tuareg-modeorocp-indent吗?
tuareg-mode
ocp-indent
如果您想将 tuareg 用于.mlland .mly,您可以添加这些行:
(add-to-list 'auto-mode-alist '("\\.mll\\'" . tuareg-mode)) (add-to-list 'auto-mode-alist '("\\.mly\\'" . tuareg-mode))
您同时使用 tuareg 和 ocp-indent。但我认为这是处理缩进的 ocp-indent 。