Vim textwidth 逗号缩进问题
如果我在 Vim 中设置以下选项,
set textwidth=80
文本将在 80 个字符处中断。这可行,但问题是如果逗号 (,) 位于行尾,Vim 会缩进下一行。我可以做什么来避免这种行为?
If i set the following option in Vim,
set textwidth=80
the text will break at 80 characters. This works, but the problem is if a comma (,) is on the end of a line, Vim indents the next line. What can I do to avoid this behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能启用了 C 风格缩进。
:set nocindent
应该可以解决问题You probably have C style indenting on.
:set nocindent
should do the trick编辑您的
.vimrc
并注释掉set fo=...
。Edit your
.vimrc
and commentset fo=...
out.