comparison runtime/ftplugin/fennel.vim @ 32590:635de73eeb4c

Update runtime files Commit: https://github.com/vim/vim/commit/10e8ff9b26078994cae57c2422b145d37aaf714e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 10 21:40:39 2023 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Jun 2023 22:45:05 +0200
parents 4d76b3e07c07
children 448aef880252
comparison
equal deleted inserted replaced
32589:47f101f21004 32590:635de73eeb4c
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: Fennel 2 " Language: Fennel
3 " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com> 3 " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com>
4 " Last Update: 2022 Apr 20 4 " Last Update: 2023 Jun 9
5 5
6 if exists('b:did_ftplugin') 6 if exists('b:did_ftplugin')
7 finish 7 finish
8 endif 8 endif
9 let b:did_ftplugin = 1 9 let b:did_ftplugin = 1
11 setlocal commentstring=;%s 11 setlocal commentstring=;%s
12 setlocal comments=:;;,:; 12 setlocal comments=:;;,:;
13 setlocal formatoptions-=t 13 setlocal formatoptions-=t
14 setlocal suffixesadd=.fnl 14 setlocal suffixesadd=.fnl
15 setlocal lisp 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 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
17 17
18 let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<' 18 let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<'