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