Jon Parise | ea99903 | 2024-04-22 21:07:41 +0200 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: ondir <https://github.com/alecthomas/ondir> | ||||
3 | " Maintainer: Jon Parise <jon@indelible.org> | ||||
4 | |||||
5 | if exists('b:did_ftplugin') | ||||
6 | finish | ||||
7 | endif | ||||
8 | |||||
9 | let s:cpo_save = &cpoptions | ||||
10 | |||||
11 | setlocal comments=:# commentstring=#\ %s | ||||
12 | |||||
13 | let b:undo_ftplugin = 'setl comments< commentstring<' | ||||
14 | |||||
15 | let &cpoptions = s:cpo_save | ||||
16 | unlet s:cpo_save | ||||
17 | |||||
18 | " vim: et ts=4 sw=2 sts=2: |