fennel.vim (687B)
1 " Vim filetype plugin file 2 " Language: Fennel 3 " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com> 4 " Last Update: 2023 Jun 9 5 " 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring') 6 7 if exists('b:did_ftplugin') 8 finish 9 endif 10 let b:did_ftplugin = 1 11 12 setlocal commentstring=;\ %s 13 setlocal comments=:;;,:; 14 setlocal formatoptions-=t 15 setlocal suffixesadd=.fnl 16 setlocal lisp 17 setlocal lispwords=accumulate,case,case-try,collect,do,doto,each,eval-compiler,faccumulate,fcollect,fn,for,icollect,lambda,let,macro,macros,match,match-try,when,while,with-open 18 19 let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'