blob: 259fb137a169e60ce648470cda2929a4c2a930f6 [file] [log] [blame]
Wu, Zhenyu72d81a62024-04-08 22:19:06 +02001" 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
8if exists('b:did_ftplugin')
9 finish
10endif
11let b:did_ftplugin = 1
12
13let s:save_cpoptions = &cpoptions
14set cpoptions&vim
15
16let b:undo_ftplugin = 'setlocal comments< commentstring< include<'
17setlocal comments=:#
18setlocal commentstring=#\ %s
19setlocal include=^\sinclude
20
21let &cpoptions = s:save_cpoptions
22unlet s:save_cpoptions