Syntax Highlight for Mako in Eclipse or TextMate? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T03:31:14Zhttp://stackoverflow.com/feeds/question/922771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/922771/syntax-highlight-for-mako-in-eclipse-or-textmate2Syntax Highlight for Mako in Eclipse or TextMate?ClaudioA2009-05-28T19:34:26Z2009-05-30T06:03:34Z
<p>Hi, does anyone know of a syntax highlight for mako templates for eclipse or for textmate?</p>
<p>I know that there is a .mako syntax highlighter for the default text editor in ubuntu.</p>
<p>Thanks a lot.
Claudio.</p>
http://stackoverflow.com/questions/922771/syntax-highlight-for-mako-in-eclipse-or-textmate/922950#9229501Answer by Matt Newby for Syntax Highlight for Mako in Eclipse or TextMate?Matt Newby2009-05-28T20:21:41Z2009-05-28T20:21:41Z<p>Claudio,</p>
<p>I don't use mako templates, but a quick google search turned up <a href="http://groups.google.com/group/mako-discuss/browse%5Fthread/thread/796926337af30cf0" rel="nofollow">this article</a> from the mako-discuss google group, which refers to a Colorer library syntax highlighter. This sounds like it might be a decent lead for you.</p>
<p>-matt</p>
http://stackoverflow.com/questions/922771/syntax-highlight-for-mako-in-eclipse-or-textmate/923030#9230302Answer by Heikki Toivonen for Syntax Highlight for Mako in Eclipse or TextMate?Heikki Toivonen2009-05-28T20:38:05Z2009-05-28T20:38:05Z<p>What I ended up doing was naming my Mako Templates with .html suffix and thus getting the usual HTML syntax highlighting etc. that I am used to. Alternatively I could have associated .mako suffix with the HTML handler. While this does not address Mako specifically, it was enough for me, since I find most of the template is plain HTML anyway.</p>
http://stackoverflow.com/questions/922771/syntax-highlight-for-mako-in-eclipse-or-textmate/929130#9291304Answer by Pavel Repin for Syntax Highlight for Mako in Eclipse or TextMate?Pavel Repin2009-05-30T06:03:34Z2009-05-30T06:03:34Z<p>I just did some <a href="http://www.google.com/search?q=mako%2Bbundle%2Btextmate" rel="nofollow">googlin'</a>. There is a <a href="http://svn.makotemplates.org/contrib/textmate/Mako.tmbundle/" rel="nofollow">Mako bundle</a>.</p>
<p>I installed it under <code>~/Library/Application Support/TextMate/Bundles/</code> like so:</p>
<pre>
cd ~/Library/Application\ Support/TextMate/Bundles/
svn co http://svn.makotemplates.org/contrib/textmate/Mako.tmbundle
</pre>
<p>In TextMate, I did <code>Bundles | Bundle Editor | Reload Bundles</code>, and <code>Mako</code> showed up in the menu.</p>
<p>It adds new HTML language variant: <code>HTML (Mako)</code>, snippets and stuff like that.</p>
<p>Hope this helps.</p>