在Vim中格式化Ruby代码

前端之家收集整理的这篇文章主要介绍了在Vim中格式化Ruby代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在就转移到Vim。在TextMate中,我可以通过点击Cmd-Alt- [格式化代码。如何在Vim中实现相同?

请参阅下面的命令命令。我发现我也需要在我的.vimrc中,以便Vim知道如何自动绑定Ruby。

if has("autocmd")
  filetype indent on
endif
Vimcastsa useful screencast关于你可能感兴趣的这个问题
gg=G

gg => go to start of file
=  => apply autoformatting
G  => ... to the end of file
原文链接:https://www.f2er.com/bash/388833.html

猜你在找的Bash相关文章