up vote 5 down vote favorite
3
share [g+] share [fb]

does anyone know of a syntax highlight for mako templates for eclipse or for textmate?

I know that there is a .mako syntax highlighter for the default text editor in ubuntu.

Thanks a lot. Claudio.

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

I just did some googlin'. There is a Mako bundle.

I installed it under ~/Library/Application Support/TextMate/Bundles/ like so:

cd ~/Library/Application\ Support/TextMate/Bundles/
svn co http://svn.makotemplates.org/contrib/textmate/Mako.tmbundle

In TextMate, I did Bundles | Bundle Editor | Reload Bundles, and Mako showed up in the menu.

It adds new HTML language variant: HTML (Mako), snippets and stuff like that.

Hope this helps.

link|improve this answer
thanks a lot man, i´m going to test this right now. – Claudio Acciaresi Jun 1 '09 at 1:45
2  
Working great, some minor tweak, once loaded... go to Bundle Editor, select Mako, then HTML (mako) and in the second line of the script, the file type should be MAKO and not MAO, once changed, is looking really really cool. Thanks¡ – Claudio Acciaresi Jun 1 '09 at 1:54
thanks a ton! the link above doesn't work anymore, but this does: git clone github.com/williamsjj/Mako.tmbundle.git Also, if this stumps anyone, I had to create a TextMate/Bundles folder myself, it wasn't already there. – denrk Aug 8 '10 at 10:44
The link has changed : makotemplates.org/trac/attachment/wiki/WikiStart/… – Studer Aug 17 '10 at 16:26
PS. This works in Redcar too github.com/redcar/redcar – mikeycgto Jul 8 '11 at 4:28
feedback

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.

link|improve this answer
1  
For Aptana 3, I've found if you associate .mako's with an HTML editor you seem to get pretty good highlighting. The Python bits will not have colors, but the HTML will. – mikeycgto Jan 20 '11 at 20:03
feedback

Claudio,

I don't use mako templates, but a quick google search turned up this article 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.

-matt

link|improve this answer
yep I tried that one but did not work for me... :( Thanks a lot anyway!!!! – Claudio Acciaresi May 28 '09 at 21:08
Yep, that seems to work on os x only and I'm not sure if it does work at all anymore with recent versions of colorer / eclipse. And it works, quite badly anyways, I never took my time to finish it properly. – Mikael Lepistö Apr 8 '11 at 21:27
feedback

There is a Git repos: http://github.com/williamsjj/Mako.tmbundle.git

link|improve this answer
Thanks for the link :) – Claudio Acciaresi Sep 29 '10 at 15:01
feedback

You can go to:

  1. Preferences->General->Editors->File Associations.
  2. Click to add a new file type and type *.mak and click OK.
  3. In File types click on *.mak and under Associated editors add HTML editor(default), Text Editor, Text Editor(studio) and Web Browser.

This colors the text, works OK for me :)

P.S. Be sure to have the Aptana plugin installed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.