mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 03:48:18 +00:00

Problem: filetype: m17ndb files are not detected
Solution: detect m17ndb files as m17ndb filetype,
include filetype, syntax and indent files for the
new filetype (David Mandelberg).
References:
https://www.nongnu.org/m17n/manual-en/m17nDBFormat.html describes the
format. https://git.savannah.nongnu.org/cgit/m17n/m17n-db.git/tree/ has
examples of the files.
closes: vim/vim#16696
ed7d8e55ac
Also adjust the xkb parent pattern according to dev_vimpatch.txt.
Co-authored-by: David Mandelberg <david@mandelberg.org>
18 lines
416 B
VimL
18 lines
416 B
VimL
" Vim filetype plugin
|
|
" Language: m17n database
|
|
" Maintainer: David Mandelberg <david@mandelberg.org>
|
|
" 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<"
|