Mercurial > vim
view runtime/ftplugin/toml.vim @ 33934:8986b25a7610
Added tag v9.0.2163 for changeset aceaf677dd928e41a3b6ca18dae727c2495b667f
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 14 Dec 2023 20:15:09 +0100 |
parents | ef1c4fa8fc11 |
children |
line wrap: on
line source
" Vim filetype plugin " Language: TOML " Homepage: https://github.com/cespare/vim-toml " Maintainer: Aman Verma " Author: Lily Ballard <lily@ballards.net> " Last Change: Sep 21, 2021 if exists('b:did_ftplugin') finish endif let b:did_ftplugin = 1 let s:save_cpo = &cpo set cpo&vim let b:undo_ftplugin = 'setlocal commentstring< comments<' setlocal commentstring=#\ %s setlocal comments=:# let &cpo = s:save_cpo unlet s:save_cpo " vim: et sw=2 sts=2