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> | ||||
Bram Moolenaar | 10e8ff9 | 2023-06-10 21:40:39 +0100 | [diff] [blame] | 4 | " Last Update: 2023 Jun 9 |
Bram Moolenaar | ce001a3 | 2022-04-27 15:25:03 +0100 | [diff] [blame] | 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 | ||||
Bram Moolenaar | 10e8ff9 | 2023-06-10 21:40:39 +0100 | [diff] [blame] | 16 | 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 |
Bram Moolenaar | ce001a3 | 2022-04-27 15:25:03 +0100 | [diff] [blame] | 17 | |
18 | let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<' |