如何在vim中折叠Go语言中的错误检查代码?

huangapple go评论129阅读模式
英文:

How to fold errors checks in go in vim?

问题

在我的代码中,我有很多这样的检查:

if err != nil {
  // foo
}

如何在vim中轻松折叠它们?

英文:

In my code I have a lot of such checks:

if err != nil {
  // foo
}

How to easily fold them in vim?

答案1

得分: 0

这将解决问题::g/\s*if err /normal jva{zf

英文:

This will do the trick :g/\s*if err /normal jva{zf

huangapple
  • 本文由 发表于 2015年2月10日 18:01:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/28428807.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定