Files
neovim/runtime/ftplugin/radvd.vim
zeertzjq 5cd7b3a9ad vim-patch:9.2.1018: filetype: radvd config files are not recognized (#41534)
Problem:  filetype: radvd config files are not recognized
Solution: Detect radvd.conf as radvd filetype, include syntax and
          filetype plugins, add syntax tests, update the menus (mdspan).

Reference:
https://linux.die.net/man/5/radvd.conf

closes: vim/vim#21159

d4c8c66bed

Co-authored-by: mdspan <mdspan.github@gmail.com>
2026-08-29 08:49:18 +08:00

14 lines
303 B
VimL

" Vim filetype plugin file
" Language: radvd configuration
" Maintainer: mdspan <mdspan.github@gmail.com>
" Last Change: 2026 Aug 27
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
setlocal comments=s1:/*,mb:*,ex:*/,://,:# commentstring=#\ %s
let b:undo_ftplugin = "setl com< cms<"