Wu, Zhenyu | fcbefe7 | 2024-04-11 21:25:39 +0200 | [diff] [blame] | 1 | " Vim Compiler File |
2 | " Language: vimdoc | ||||
3 | " Maintainer: Wu, Zhenyu <wuzhenyu@ustc.edu> | ||||
4 | " Latest Revision: 2024-04-09 | ||||
5 | " | ||||
6 | " you can get it by `pip install vimdoc` or the package manager of your distribution. | ||||
7 | |||||
8 | if exists('b:current_compiler') | ||||
9 | finish | ||||
10 | endif | ||||
11 | let b:current_compiler = 'vimdoc' | ||||
12 | |||||
13 | let s:save_cpoptions = &cpoptions | ||||
14 | set cpoptions&vim | ||||
15 | |||||
16 | CompilerSet makeprg=vimdoc | ||||
17 | |||||
18 | let &cpoptions = s:save_cpoptions | ||||
19 | unlet s:save_cpoptions |