vimdoc.vim (639B)
1 " Vim Compiler File 2 " Language: vimdoc 3 " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> 4 " Latest Revision: 2024-04-13 5 " Last Change: 2025 Nov 16 by The Vim Project (set errorformat) 6 " 7 " If you can not find 'vimdoc' in the package manager of your distribution e.g 8 " 'pip', then you may need to build it from its source. 9 10 if exists('b:current_compiler') 11 finish 12 endif 13 let b:current_compiler = 'vimdoc' 14 15 let s:save_cpoptions = &cpoptions 16 set cpoptions&vim 17 18 CompilerSet makeprg=vimdoc 19 " CompilerSet errorformat=%f:%l:%c:\ %m,%f:%l:\ %m 20 CompilerSet errorformat& 21 22 let &cpoptions = s:save_cpoptions 23 unlet s:save_cpoptions