如何修复 Textmate 的自动配对

发布于 2024-12-16 13:36:18 字数 213 浏览 1 评论 0原文

我正在编辑 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待圉鍢 2024-12-23 13:36:18

尝试'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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文