我需要在
vim中执行逻辑和两个autocmd事件.基本上,当FileType为tex时,该命令必须在InsertLeave上运行.看起来这应该工作(在.vimrc中):
autocmd FileType tex :autocmd InsertLeave :w
但事实并非如此.嵌套选项似乎也没有帮助,即使手册指出它应该.
它易于做逻辑或:
autocmd BufEnter,BufLeave ...
做逻辑AND一定不是太难.
我对@Eevee的答案进行了修正:要使自动命令仅适用于一个缓冲区,你应该使用
原文链接:https://www.f2er.com/bash/384223.htmlaugroup TexAutoWrite autocmd FileType tex :autocmd! TexAutoWrite InsertLeave <buffer> :update augroup END
,见`:h autocmd-buflocal.