2022-04-27 08:48:35 -07:00
|
|
|
" Vim filetype plugin file
|
|
|
|
" Language: Fennel
|
|
|
|
" Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com>
|
2023-06-11 04:40:22 -07:00
|
|
|
" Last Update: 2023 Jun 9
|
2024-06-04 00:39:28 -07:00
|
|
|
" 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
|
2022-04-27 08:48:35 -07:00
|
|
|
|
|
|
|
if exists('b:did_ftplugin')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2024-06-04 00:39:28 -07:00
|
|
|
setlocal commentstring=;\ %s
|
2022-04-27 08:48:35 -07:00
|
|
|
setlocal comments=:;;,:;
|
|
|
|
setlocal formatoptions-=t
|
|
|
|
setlocal suffixesadd=.fnl
|
|
|
|
setlocal lisp
|
2023-06-11 04:40:22 -07:00
|
|
|
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
|
2022-04-27 08:48:35 -07:00
|
|
|
|
|
|
|
let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'
|