Bram Moolenaar | ce001a3 | 2022-04-27 15:25:03 +0100 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: Fennel | ||||
3 | " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com> | ||||
4 | " Last Update: 2022 Apr 20 | ||||
5 | |||||
6 | if exists('b:did_ftplugin') | ||||
7 | finish | ||||
8 | endif | ||||
9 | let b:did_ftplugin = 1 | ||||
10 | |||||
11 | setlocal commentstring=;%s | ||||
12 | setlocal comments=:;;,:; | ||||
13 | setlocal formatoptions-=t | ||||
14 | setlocal suffixesadd=.fnl | ||||
15 | setlocal lisp | ||||
16 | setlocal lispwords=accumulate,collect,do,doto,each,eval-compiler,fn,for,icollect,lambda,let,macro,macros,match,match-try,when,while,with-open | ||||
17 | |||||
18 | let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<' |