Files
org-vim/runtime/ftplugin/fennel.vim
T
Christian Brabandt 8c670b3a51 runtime(fennel): Update Last Update header
forgotten from commit 8513982a5e

Signed-off-by: Christian Brabandt <cb@256bit.org>
2026-06-22 19:05:36 +00: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<'