Skip to main content
 首页 » 编程设计

emacs之如何告诉 emacs 以 C++ 模式打开 .h 文件

2024年02月27日23傻小

我应该向 _emacs(在 Windows 上)文件中添加哪些行,以使其以 C++ 模式打开 .h 文件?默认为C模式。

请您参考如下方法:

试试这个:

(add-to-list 'auto-mode-alist '("\\.h\\'" . c++-mode)) 

每当您打开 .h 文件时,都会使用 C++ 模式。