mirror of
https://github.com/neovim/neovim.git
synced 2026-01-03 18:06:29 +10:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
15 lines
320 B
VimL
15 lines
320 B
VimL
" Vim filetype plugin
|
|
" Language: SPA JSON
|
|
" Maintainer: David Mandelberg <david@mandelberg.org> (invalid)
|
|
" Last Change: 2025 Mar 22
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal comments=:###,:##,:#
|
|
setlocal commentstring=#\ %s
|
|
|
|
let b:undo_ftplugin = "setlocal comments< commentstring<"
|