xref: /vim-8.2.3635/runtime/ftplugin/toml.vim (revision 2286304c)
1" Vim filetype plugin
2" Language:    TOML
3" Homepage:    https://github.com/cespare/vim-toml
4" Maintainer:  Aman Verma
5" Author:      Kevin Ballard <[email protected]>
6" Last Change: Sep 21, 2021
7
8if exists('b:did_ftplugin')
9  finish
10endif
11let b:did_ftplugin = 1
12
13let s:save_cpo = &cpo
14set cpo&vim
15let b:undo_ftplugin = 'setlocal commentstring< comments<'
16
17setlocal commentstring=#\ %s
18setlocal comments=:#
19
20let &cpo = s:save_cpo
21unlet s:save_cpo
22
23" vim: et sw=2 sts=2
24