> 2) Is there a way to do language matching (for the language modules)
> w/
> o a suffix? I know that the docs say there is a way to do it based on
> the content, but I'm not sure that's possible for codeless modules.
> Any thoughts? (I know there is some sort of tag thing you can do in
> comments that XCode recognizes).
There might be better ways to do this in your CLM (there are none that
I know of). But one solution is to simply turn on the Preferences ->
Text Files -> "Honor saved state:" -> "Emacs local variables" setting.
And then add this line to the top of your various makefiles:
-*- mode: name-of-source-language -*-
Where "name-of-source-language" is the name of your CLM as it appears
in BBEdit's Installed Languages list (Preferences -> Languages ->
Installed Languages) but in all lower case and spaces substituted with
dashes.
You can read a bit more about BBEdit's support for Emacs local
variables in the User Manual on page 227.
-Dennis