如何修复 Textmate 的自动配对
我正在编辑 .rb 文件。我已将 .rb 添加到 Ruby on Rails 中。
我对 Textmate 很陌生,找不到阻止编辑器在每个 # 之后添加 {} 的选项。
例如,我得到这个:
"pages#{home}"
但我想要这个:
"pages#home"
I'm editing a .rb file. I've added .rb to Ruby on Rails.
I am very new to Textmate, and I can't find the option that stops the editor from adding {} after every #.
For example, I get this:
"pages#{home}"
But I want this:
"pages#home"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
'pages#home'
不是
"pages#home"
'pages#home'
会更快,因为它不会尝试处理#{}
和其他嵌入式 ruby。仅当您知道要将 ruby 嵌入到字符串中时才使用
""
。如果您确实想要禁用
#{}
,请关闭 Ruby/Rails 捆绑包。Try
'pages#home'
Not
"pages#home"
'pages#home'
will be faster because it's not trying to process#{}
and other embedded ruby.Only use
""
when you know you're going to embed ruby into the string.If you really want to disable the
#{}
, turn off the Ruby/Rails bundle.