neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

pkl.vim (401B)


      1 " Vim filetype plugin
      2 " Language:	Pkl
      3 " Maintainer:	Riley Bruins <ribru17@gmail.com>
      4 " Last Change:	2025 Jul 14
      5 " 2025 Oct 03 by Vim Project Add foldmethod #18274
      6 
      7 if exists('b:did_ftplugin')
      8  finish
      9 endif
     10 let b:did_ftplugin = 1
     11 
     12 setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
     13 setlocal commentstring=//\ %s
     14 setlocal foldmethod=syntax
     15 
     16 let b:undo_ftplugin = 'setl com< cms< fdm<'