Syntax Highlight for Mako in Eclipse or TextMate? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:31:14Z http://stackoverflow.com/feeds/question/922771 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/922771/syntax-highlight-for-mako-in-eclipse-or-textmate 2 Syntax Highlight for Mako in Eclipse or TextMate? ClaudioA 2009-05-28T19:34:26Z 2009-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#922950 1 Answer by Matt Newby for Syntax Highlight for Mako in Eclipse or TextMate? Matt Newby 2009-05-28T20:21:41Z 2009-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#923030 2 Answer by Heikki Toivonen for Syntax Highlight for Mako in Eclipse or TextMate? Heikki Toivonen 2009-05-28T20:38:05Z 2009-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#929130 4 Answer by Pavel Repin for Syntax Highlight for Mako in Eclipse or TextMate? Pavel Repin 2009-05-30T06:03:34Z 2009-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>