您好,我正在学习 Rails3,所以我开始使用 gem Bundler ( http://github.com/carlhuda/bundler ) 有人知道如何设置 TextMate 以突出显示Gemfile语法吗?谢谢!
问问题
1775 次
2 回答
36
在 Textmate 中,选择 Bundles 菜单 => Bundles editor
选择语言而不是全部显示。
在 Ruby on Rails 包中选择 Ruby on Rails 语言
更改此行:
fileTypes = ( 'rb', 'rxml', 'builder' );
对此:
fileTypes = ( 'rb', 'rxml', 'builder', 'Gemfile' );
转到捆绑包 => 捆绑包编辑器 => 重新加载捆绑包。
重新打开您的 Gemfile,您现在应该可以看到语法突出显示。
于 2010-07-04T11:48:51.677 回答
0
从https://github.com/drnic/Bundler.tmbundle.git安装 textmate 包。
步骤:
1. mkdir -p ~/Library/Application\ Support/TextMate/Bundles
2. cd ~/Library/Application\ Support/TextMate/Bundles
3. git clone https://github.com/drnic/Bundler.tmbundle.git
4. osascript -e 'tell app "TextMate" to reload bundles'
5. 打开 Gemfile 并从下面的菜单中选择“Bundler”
于 2011-12-25T06:38:58.793 回答