类似 vim emacs ruby 缩进
ruby-mode 来自 svn,看起来等于 1.1 版本,
这里是 emacs 的 hash 缩进,
User.all({
:joins => :account,
:conditions => {:delete_at => nil}
})
这里的 hash 缩进与 vim 中的相同
User.all({
:joins => :account,
:conditions => {:delete_at => nil}
})
如何在 ruby-mode 中使 emacs 缩进像 vim 一样?
ruby-mode from svn, looks equal to 1.1 version
here is emacs indentation of hash
User.all({
:joins => :account,
:conditions => {:delete_at => nil}
})
here is the same in vim
User.all({
:joins => :account,
:conditions => {:delete_at => nil}
})
How to make emacs indent like vim in ruby-mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 Mx 自定义模式;您将看到用于自定义 Ruby 缩进的选项。看起来您可能想将“Ruby Deep Indent Paren”更改为 nil。
Try M-x customize-mode; you'll see options for customizing Ruby indentation. Looks like you may want to change "Ruby Deep Indent Paren" to nil.