Ich habe oft Shell-Skripten, die andere Skriptsprachen nennen, etwa so:Coloring/Einrücken ein Skript im Skript in Emacs
#!/bin/bash
cat somefile|awk '
BEGIN
{
#This line is not auto-indented and is colored as a string constant.
...
}
{
#Same with this line.
...
}'
echo "More Bash code here."
...
Gibt es eine Möglichkeit Emacs die awk String als awk-Programm erkennen zu machen statt nur eine Stringkonstante?