Eclipse 或 TextMate 中 Mako 的语法高亮显示?
有谁知道 Eclipse 或 TextMate 的 Mako 模板的语法突出显示吗?
我知道 Ubuntu 中的默认文本编辑器有一个 .mako
语法荧光笔。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我刚刚做了一些 googlin。 有一个 Mako 包(此处列出了其他语法突出显示)。
我将其安装在
~/Library/Application Support/TextMate/Bundles/
下,如下所示:在 TextMate 中,我做了
Bundles | 捆绑包编辑器 | 重新加载捆绑包
,并且Mako
出现在菜单中。它添加了新的 HTML 语言变体:
HTML (Mako)
、代码片段和类似内容。希望这可以帮助。
I just did some googlin'. There is a Mako bundle (among other syntax highlighters listed here).
I installed it under
~/Library/Application Support/TextMate/Bundles/
like so:In TextMate, I did
Bundles | Bundle Editor | Reload Bundles
, andMako
showed up in the menu.It adds new HTML language variant:
HTML (Mako)
, snippets and stuff like that.Hope this helps.
Claudio,
我不使用 mako 模板,但快速谷歌搜索出现了 这篇文章来自 mako-discuss google group,它指的是 Colorer 库语法荧光笔。 这听起来对你来说可能是一个不错的线索。
-哑光
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
我最终做的是用 .html 后缀命名我的 Mako 模板,从而获得我习惯的常见 HTML 语法突出显示等。 或者,我可以将 .mako 后缀与 HTML 处理程序关联起来。 虽然这并没有专门针对 Mako,但这对我来说已经足够了,因为我发现大多数模板都是纯 HTML。
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.
您可以转到:
这对文本进行着色,对我来说没问题:)
PS 请务必安装 Aptana 插件。
You can go to:
This colors the text, works OK for me :)
P.S. Be sure to have the Aptana plugin installed.
Eclipse 有一个 Mako 模板编辑器。 要安装,请将包含 jar 文件的插件目录复制到 Eclipse 根文件夹中的 dropins 文件夹中。 即手动安装jar 格式的Eclipse 插件。
There is a Mako Template Editor for Eclipse. To install, copy the plugins directory with the jar file into your dropins folder in your Eclipse root folder. That is, a manual installation of a Eclipse plugin in jar format.
窗口(菜单)> 偏好> 一般> 编辑> 文件关联
在文件类型(上框)中添加 *.mako,并在关联编辑器(下框)中添加 Html 编辑器
Windows(菜单)> 偏好> 一般> 编辑> 内容类型
找到 HTML 并在文件关联中添加 *.mako。
Windows (menu) > Preference > General > Editor > File Associations
Add *.mako in File Types (upper box) and add Html editor in Associated editor (lower box)
Windows (menu) > Preference > General > Editor > Content Types
Under Text find HTML and add *.mako in File associations.
LiClipse 插件 (http://www.liclipse.com/) 提供开箱即用的 Mako 支持Eclipse(请注意,如果您希望在 Eclipse 中支持任何其他语言,LiClipse 可以加载任何现有的 TextMate 包 - http://www.liclipse.com/textmate_bundles.html - 为此)。
The LiClipse plugin (http://www.liclipse.com/), provides Mako support out of the box for Eclipse (and as a note, if you want support for any other language in Eclipse, LiClipse can load any existing TextMate bundle -- http://www.liclipse.com/textmate_bundles.html -- for that).