zathurarc.vim 614 B

1234567891011121314151617181920212223
  1. " Vim filetype plugin file
  2. " Language: Zathurarc
  3. " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu>
  4. " Documentation: https://pwmt.org/projects/zathura/documentation/
  5. " Upstream: https://github.com/Freed-Wu/zathurarc.vim
  6. " Latest Revision: 2024-04-02
  7. if exists('b:did_ftplugin')
  8. finish
  9. endif
  10. let b:did_ftplugin = 1
  11. let s:save_cpoptions = &cpoptions
  12. set cpoptions&vim
  13. let b:undo_ftplugin = 'setlocal comments< commentstring< include<'
  14. setlocal comments=:#
  15. setlocal commentstring=#\ %s
  16. setlocal include=^\sinclude
  17. let &cpoptions = s:save_cpoptions
  18. unlet s:save_cpoptions