Vim中的RubyMine-Like Autoformat

时间:2013-10-02 19:57:39

标签: ruby vim rubymine autoformatting

有没有办法在vim中使用类似RubyMine的autoformatting?

示例我有这段代码:

def some_method
  hash[:key  ] =  "hello"
end

def some_other_method
  x =  [ "hello",   "world"]
end

我想点击类似于Cmd + Shift + L(在RubyMine中)的东西,并让vim输出:

def some_method
  hash[:key] = "hello"
end

def some_other_method
  x = ["hello", "world"]
end

1 个答案:

答案 0 :(得分:1)

现在我们有了一个名为rufo的漂亮工具,可以自动为您编写代码。您可以使用Neoformat

等工具自动运行它