使用Markdown的Macvim空间缩进

时间:2013-11-01 14:15:56

标签: vim macvim

我正在使用Macvim编辑Markdown并且我可能知道无论如何我可以设置它,因此每当我进入时,前一行的空格缩进都会保持。我不想为每一行使用TAB。感谢。

1 个答案:

答案 0 :(得分:2)

尝试启用autoindent选项:

:set autoindent

或:

:set ai

Vim手册解释:

'autoindent' 'ai'   boolean (default off)
        local to buffer
Copy indent from current line when starting a new line (typing <CR>
in Insert mode or when using the "o" or "O" command).