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