Vim 自动缩进私有关键字
我正在学习 Vim(我正在使用 gVim)
我需要执行以下操作: 假设我输入以下内容:
class MyClass {
private
}
在 private 之后输入 :
后,结果应该是:
class MyClass {
private:
}
如何自动执行该行为?
我尝试过
:imap private: <Home><Delete>
但我觉得这根本不是一个优雅的解决方案。 我已经安装了 Fritz Mehner 的 c.vim。
I'm learning Vim (I'm using gVim)
I need to do the following:
Suppose I typed this:
class MyClass {
private
}
After typing the :
after private, result should be:
class MyClass {
private:
}
How can I do automate that behaviour?
I tried with
:imap private: <Home><Delete>
But I feel it's not an elegant solution at all.
I already installed c.vim by Fritz Mehner.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考:http://vimdoc.sourceforge.net/htmldoc/indent.html
Reference: http://vimdoc.sourceforge.net/htmldoc/indent.html