Files
neovim/runtime/ftplugin/fennel.vim
zeertzjq b595654c39 vim-patch:8c670b3: runtime(fennel): Update Last Update header
forgotten from commit 8513982a5ed5a84ba8e4e532505b07b4fa1efbdb

8c670b3a51

Co-authored-by: Christian Brabandt <cb@256bit.org>
2026-06-23 06:50:12 +08:00

21 lines
777 B
VimL

" Vim filetype plugin file
" Language: Fennel
" Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com>
" Last Update: 2023 Jun 9
" 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
" 2026 Jun 22 by yilisharcs, add all more lisp 'comments' #20579
if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
setlocal commentstring=;\ %s
setlocal comments=:;;;;,:;;;,:;;,:;
setlocal formatoptions-=t
setlocal suffixesadd=.fnl
setlocal lisp
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
let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'