<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hello All,<br><span class="Apple-tab-span" style="white-space: pre; ">       </span>I believe I have found a bug in the syntax highlighting for shell scripts.  When I have a comment in a case statement and the comment does not get highlighted correctly.  Here is the text for my case statement:<br><br>#first figure out what platform you are in, based on the uname -rs<br>KERNELVERSION=`uname -rs`<br>case $KERNELVERSION in<br>#linux returns "Linux kernelversionnumber"<br>Linux* )<br><span class="Apple-tab-span" style="white-space: pre; ">  </span>OSTYPE="linux";;<br>#freeBSD returns "freeBSD releaseversion"<br>*BSD* )<br><span class="Apple-tab-span" style="white-space: pre; ">       </span>OSTYPE="bsd";;<br>#osX returns "Darwin kernelversionnumber"<br>Darwin* )<br><span class="Apple-tab-span" style="white-space: pre; ">       </span>OSTYPE="macos";;<br>#everything else<br>* )<br><span class="Apple-tab-span" style="white-space: pre; ">      </span>OSTYPE="unknown";;<br>esac<br><br>also here is a link to a picture of what I am seeing on my screen: <a href="http://farm4.static.flickr.com/3575/3410707546_d7a2a67e49_o.png">http://farm4.static.flickr.com/3575/3410707546_d7a2a67e49_o.png</a><br><br>Im not sure if this is even helpful but pastebins highlighting seems to do the same as textmate but quickhighlighter.com seems to get it correctly(what I assume is correct).<br><br>Thanks for your help.<br><br>--Colin</body></html>