在emacs中将主要模式从基本更改为shell

时间:2013-07-09 04:54:11

标签: emacs mode

令人惊讶的是,文件 .bashrc_custom 具有基本模式,即使文件 .bashrc .bash_profile 位于同一目录中有(Shell脚本[bash])

如何为.bashrc_custom配置主要模式?

1 个答案:

答案 0 :(得分:2)

将它放入您的Emacs init文件中:

(add-to-list 'auto-mode-alist '("\\.bashrc_custom\\'" . sh-mode))

注意,这里可能不会询问目录局部变量,它由列表读取字符串resp统治。用于匹配文件名的正则表达式。