当我在编辑python文件时在Vim的一个空行添加一个#插入模式,vim将#移动到行的开头,但是我想在我输入它的选项卡级别插入#。
例如,当在vim中写这个时
for i in range(10): #
#不会停留在那里我进入它。
它像vim一样移动。
for i in range(10): #
有没有人知道一个配置项在vim中,会改变这个?
如果它有帮助,我使用Ubuntu 8.10。
我在这里找到了一个答案
http://vim.wikia.com/wiki/Restoring_indent_after_typing_hash
原文链接:https://www.f2er.com/bash/390964.html看来vim smartindent选项是导致问题的原因。
上面引用的页面描述工作轮,但阅读帮助在smartindent在vim本身(:help smartindent),我决定尝试cindent而不是smartindent。
我换了
set smartindent
与
set cindent
在我的.vimrc文件
到目前为止它工作完美。
这个改变也固定了’<''的行为和'>>’缩进包含python注释的视觉块。
对于smartindent和cindent(:help smartindent和:help cindent)的vim帮助中有更多配置选项和缩进信息。