blob: 2a9623faff255c6acab3a43a34a0e660d95af098 [file] [log] [blame]
Bram Moolenaarce001a32022-04-27 15:25:03 +01001" Vim filetype plugin file
2" Language: Fennel
3" Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com>
Bram Moolenaar10e8ff92023-06-10 21:40:39 +01004" Last Update: 2023 Jun 9
Riley Bruins0a083062024-06-03 20:40:45 +02005" 2024 May 24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Bram Moolenaarce001a32022-04-27 15:25:03 +01006
7if exists('b:did_ftplugin')
8 finish
9endif
10let b:did_ftplugin = 1
11
Riley Bruins0a083062024-06-03 20:40:45 +020012setlocal commentstring=;\ %s
Bram Moolenaarce001a32022-04-27 15:25:03 +010013setlocal comments=:;;,:;
14setlocal formatoptions-=t
15setlocal suffixesadd=.fnl
16setlocal lisp
Bram Moolenaar10e8ff92023-06-10 21:40:39 +010017setlocal 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
Bram Moolenaarce001a32022-04-27 15:25:03 +010018
19let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'