2025-07-15 21:21:29 +02:00
|
|
|
" Vim filetype plugin
|
|
|
|
|
" Language: Pkl
|
|
|
|
|
" Maintainer: Riley Bruins <ribru17@gmail.com>
|
|
|
|
|
" Last Change: 2025 Jul 14
|
2025-10-03 08:41:32 +00:00
|
|
|
" 2025 Oct 03 by Vim Project Add foldmethod #18274
|
2025-07-15 21:21:29 +02:00
|
|
|
|
|
|
|
|
if exists('b:did_ftplugin')
|
|
|
|
|
finish
|
|
|
|
|
endif
|
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
2025-10-03 08:41:32 +00:00
|
|
|
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
|
2025-07-15 21:21:29 +02:00
|
|
|
setlocal commentstring=//\ %s
|
2025-10-03 08:41:32 +00:00
|
|
|
setlocal foldmethod=syntax
|
2025-07-15 21:21:29 +02:00
|
|
|
|
2025-10-03 08:41:32 +00:00
|
|
|
let b:undo_ftplugin = 'setl com< cms< fdm<'
|