vim-patch:08b0c12: runtime(squirrel): include squirrel ftplugin file

Comment spec found [here](https://squirrel-lang.org/squirreldoc/reference/language/lexical_structure.html#comments)

closes: vim/vim#15172

08b0c12716

Co-authored-by: Riley Bruins <ribru17@hotmail.com>
This commit is contained in:
Christian Clason 2024-07-08 10:47:31 +02:00
parent 79c63b5561
commit e271110e37

View File

@ -0,0 +1,17 @@
" Vim filetype plugin
" Language: Squirrel
" Maintainer: Riley Bruins <ribru17@gmail.com>
" Last Change: 2024 Jul 06
if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
" Set 'comments' to format dashed lists in comments.
" Also include ///, used for Doxygen.
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
setlocal commentstring=//\ %s
let b:undo_ftplugin = 'setl com< cms<'