Vim:`set formatoptions`丢了?

前端之家收集整理的这篇文章主要介绍了Vim:`set formatoptions`丢了?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在我的vimrc中设置了formatoptions = cqn,但是由于某种原因,它不会被阻止。似乎Vim在某个时候恢复为默认值(fo = tcq)…但是我不知道为什么。运行-V100 / tmp / log只是给了我:
formatoptions=tcq
  Last set from ~/.vimrc

没有有用的上下文。

那么,有没有办法使格式化选项坚持?还是只需要在每次加载新文件时创建一个autocmd来重置它?

编辑

使用:verbose set formatoptions显示

formatoptions=tcq
  Last set from ~/.vimrc

但是,在〜/ .vimrc中,fo或formatoptions的唯一参考是设置formatoptions = cqn。

根据关于formatoptions的vim文档:

NOTE: This option is set to the Vi
default value when ‘compatible’ is
set and to the Vim default value when
‘compatible’ is reset.

所以如果兼容性的价值在改变,那可能会导致你所看到的问题。

原文链接:https://www.f2er.com/bash/388031.html

猜你在找的Bash相关文章