all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Making auto-mode-alist override interpreter-mode-alist
@ 2009-07-22 16:46 Francis Devereux
  2009-07-22 17:06 ` Lennart Borgman
  0 siblings, 1 reply; 3+ messages in thread
From: Francis Devereux @ 2009-07-22 16:46 UTC (permalink / raw)
  To: help-gnu-emacs

Hi,

I have derived a mode from python-mode that has some settings for my  
company's Python coding style.  I want to use this mode (bright-python- 
mode) for .py files in certain directories but use the default python- 
mode for all other .py files.

I have the following in my auto-mode-alist:
(set-variable 'auto-mode-alist
           (append '(
...
             ("/Users/francis/Code/Bright/.*\\.py$" . bright-python- 
mode)
...
             ) auto-mode-alist))

This works for most files, but not for those whose first line is #!/ 
usr/bin/python.  They always open in python-mode, regardless of the  
directory that they are in.  I think that this is happening because  
interpreter-mode-alist is overriding auto-mode-alist.  Is there any  
way to make auto-mode-alist have priority over interpreter-mode-alist?

I don't really want to remove the python entry from interpreter-mode- 
alist because then Python scripts with a shebang whose names don't end  
in .py wouldn't open in python-mode.

Thanks,

Francis






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-07-23  9:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-22 16:46 Making auto-mode-alist override interpreter-mode-alist Francis Devereux
2009-07-22 17:06 ` Lennart Borgman
2009-07-23  9:36   ` Francis Devereux

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.