vim-标签识别


1

如果我在vim中编写这样的代码:

 def my_function

然后按回车键,我希望光标位于d下方。

当前它正在将光标定位在尽可能左的位置。

我怎样才能做到这一点?

Answers:


2

您需要查看几个选项:

:help 'autoindent'
:help 'smartindent'
:help 'cindent'
:help :filetype-indent-on

(这些命令的键入与您在上面看到的完全相同。)

'autoindent'选项将按照您的描述进行操作,但是Vim可以更智能地进行缩进,因此可以更灵活一些。通常,仅在vimrc中使用最后一个就足够了,让Vim检测您的文件类型以及用于该文件类型的适当缩进选项。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.