vimdoc.vim 499 B

123456789101112131415161718192021
  1. " Vim Compiler File
  2. " Language: vimdoc
  3. " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
  4. " Latest Revision: 2024-04-13
  5. "
  6. " If you can not find 'vimdoc' in the package manager of your distribution e.g
  7. " 'pip', then you may need to build it from its source.
  8. if exists('b:current_compiler')
  9. finish
  10. endif
  11. let b:current_compiler = 'vimdoc'
  12. let s:save_cpoptions = &cpoptions
  13. set cpoptions&vim
  14. CompilerSet makeprg=vimdoc
  15. let &cpoptions = s:save_cpoptions
  16. unlet s:save_cpoptions