Files
org-vim/runtime/ftplugin/toml.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
500 B
VimL
Raw Normal View History

2021-10-16 15:23:36 +01:00
" Vim filetype plugin
" Language: TOML
" Homepage: https://github.com/cespare/vim-toml
" Maintainer: Aman Verma
" Author: Lily Ballard <lily@ballards.net>
" Last Change: May 5, 2025
2021-10-16 15:23:36 +01:00
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< iskeyword<'
2021-10-16 15:23:36 +01:00
setlocal commentstring=#\ %s
setlocal comments=:#
setlocal iskeyword+=-
2021-10-16 15:23:36 +01:00
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: et sw=2 sts=2