我整理了以下一堆令人敬畏的东西:
if !exists("g:AsciidocAutoSave")
let g:AsciidocAutoSave = 0
endif
fun! AsciidocRefresh()
if g:AsciidocAutoSave == 1
execute 'write'
execute 'silent !asciidoc -b html5 -a icons "%"'
endif
endf
fun! AsciidocFocusLost()
augroup asciidocFocusLost
autocmd FocusLost <buffer> call AsciidocRefresh()
augroup END
endfun
augroup asciidocFileType
autocmd FileType asciidoc :call AsciidocFocusLost()
augroup END
唯一的问题是:每次 vim 在asciidoc
文件中失去焦点时,它会保存两次。
当我:autocmd asciidocFileType
输入命令行时,它显示:
---Auto-Commands---
asciidocFileType FileType
asciidoc :call AsciidocFocusLost()
:call AsciidocFocusLost()
与:autocmd asciidocFocusLost
和相同AsciidocRefresh()
。
为什么会出现这种重复?