diff options
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/chicken.vim | 17 | ||||
-rw-r--r-- | runtime/ftplugin/scheme.vim | 11 |
2 files changed, 13 insertions, 15 deletions
diff --git a/runtime/ftplugin/chicken.vim b/runtime/ftplugin/chicken.vim index 8daa04c774..4dc1e57d0a 100644 --- a/runtime/ftplugin/chicken.vim +++ b/runtime/ftplugin/chicken.vim @@ -1,5 +1,5 @@ " CHICKEN-specific Vim customizations -" Last Change: 2018-01-06 +" Last Change: 2018-03-05 " Author: Evan Hanson <evhan@foldling.org> " Maintainer: Evan Hanson <evhan@foldling.org> " URL: https://foldling.org/vim/ftplugin/chicken.vim @@ -14,34 +14,37 @@ endif setl keywordprg=chicken-doc setl lispwords+=and-let* -setl lispwords+=begin-for-syntax setl lispwords+=compiler-typecase setl lispwords+=condition-case setl lispwords+=define-compiler-syntax setl lispwords+=define-constant setl lispwords+=define-external setl lispwords+=define-for-syntax +setl lispwords+=define-foreign-type setl lispwords+=define-inline +setl lispwords+=define-location setl lispwords+=define-record setl lispwords+=define-record-printer setl lispwords+=define-specialization -setl lispwords+=define-syntax-rule -setl lispwords+=eval-when setl lispwords+=fluid-let +setl lispwords+=foreign-lambda* +setl lispwords+=foreign-primitive +setl lispwords+=foreign-safe-lambda* +setl lispwords+=functor setl lispwords+=handle-exceptions setl lispwords+=let-compiler-syntax +setl lispwords+=let-location setl lispwords+=let-optionals setl lispwords+=let-optionals* setl lispwords+=letrec-values setl lispwords+=match -setl lispwords+=match-lambda -setl lispwords+=match-lambda* setl lispwords+=match-let setl lispwords+=match-let* +setl lispwords+=match-letrec setl lispwords+=module setl lispwords+=receive -setl lispwords+=select setl lispwords+=set!-values +setl lispwords+=test-group let b:undo_ftplugin = b:undo_ftplugin . ' keywordprg<' diff --git a/runtime/ftplugin/scheme.vim b/runtime/ftplugin/scheme.vim index b7f8e8bbe7..62fd327e07 100644 --- a/runtime/ftplugin/scheme.vim +++ b/runtime/ftplugin/scheme.vim @@ -1,6 +1,6 @@ " Vim filetype plugin file " Language: Scheme (R7RS) -" Last Change: 2018-01-20 +" Last Change: 2018-03-05 " Author: Evan Hanson <evhan@foldling.org> " Maintainer: Evan Hanson <evhan@foldling.org> " Previous Maintainer: Sergey Khorev <sergey.khorev@gmail.com> @@ -14,25 +14,20 @@ let s:cpo = &cpo set cpo&vim setl lisp -setl comments=:;;;;,:;;;,:;;,:;,sr:#\|,ex:\|# +setl comments=:;;;;,:;;;,:;;,:;,sr:#\|,mb:\|,ex:\|# setl commentstring=;%s setl define=^\\s*(def\\k* setl iskeyword=33,35-39,42-43,45-58,60-90,94,95,97-122,126 let b:undo_ftplugin = 'setl lisp< comments< commentstring< define< iskeyword<' -setl lispwords=begin -setl lispwords+=case -setl lispwords+=case-lambda -setl lispwords+=cond -setl lispwords+=cond-expand +setl lispwords=case setl lispwords+=define setl lispwords+=define-record-type setl lispwords+=define-syntax setl lispwords+=define-values setl lispwords+=do setl lispwords+=guard -setl lispwords+=import setl lispwords+=lambda setl lispwords+=let setl lispwords+=let* |