0

是否有可能在 vim 中创建一个这样的函数?xD

function !Reindent ()
  return =G "that going to 'showcmd' and gonna prompted out
endfunction

我想在每次读取缓冲区时调用它。

4

1 回答 1

0

你不需要一个函数,你只需要一个autocmd在你将文件读入缓冲区时触发的函数:

autocmd BufRead * normal! =G
于 2017-01-28T14:51:58.920 回答