mirror of
https://github.com/neovim/neovim.git
synced 2026-03-01 06:38:26 +00:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
18 lines
426 B
VimL
18 lines
426 B
VimL
" Vim filetype plugin
|
|
" Language: m17n database
|
|
" Maintainer: David Mandelberg <david@mandelberg.org> (invalid)
|
|
" Last Change: 2025 Feb 21
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal comments=:;;;,:;;,:;
|
|
setlocal commentstring=;\ %s
|
|
setlocal iskeyword=!-~,@,^34,^(,^),^92
|
|
setlocal lisp
|
|
setlocal lispwords=
|
|
|
|
let b:undo_ftplugin = "setlocal comments< commentstring< iskeyword< lisp< lispwords<"
|