diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-10-28 14:05:39 +0100 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2018-10-28 14:07:58 +0100 |
| commit | 733b4ce0339f2fdcdb0db67717fc090dcfecf250 (patch) | |
| tree | dc9498c3ac8b8d71933f785502c0689be8cd07ec /runtime/ftplugin/chicken.vim | |
| parent | 1a51524ad540da00736027313cd89747c86c1690 (diff) | |
| download | rneovim-733b4ce0339f2fdcdb0db67717fc090dcfecf250.tar.gz rneovim-733b4ce0339f2fdcdb0db67717fc090dcfecf250.tar.bz2 rneovim-733b4ce0339f2fdcdb0db67717fc090dcfecf250.zip | |
vim-patch:7254067ee970
Update runtime files.
https://github.com/vim/vim/commit/7254067ee970686cc3ff4a1effc3e49e9192a5c1
Diffstat (limited to 'runtime/ftplugin/chicken.vim')
| -rw-r--r-- | runtime/ftplugin/chicken.vim | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/runtime/ftplugin/chicken.vim b/runtime/ftplugin/chicken.vim new file mode 100644 index 0000000000..8daa04c774 --- /dev/null +++ b/runtime/ftplugin/chicken.vim @@ -0,0 +1,51 @@ +" CHICKEN-specific Vim customizations +" Last Change: 2018-01-06 +" Author: Evan Hanson <evhan@foldling.org> +" Maintainer: Evan Hanson <evhan@foldling.org> +" URL: https://foldling.org/vim/ftplugin/chicken.vim +" Notes: These are supplemental settings, to be loaded after the core +" Scheme ftplugin file (ftplugin/scheme.vim). Enable it by setting +" b:is_chicken=1 and filetype=scheme. + +if !exists('b:did_scheme_ftplugin') + finish +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-inline +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+=handle-exceptions +setl lispwords+=let-compiler-syntax +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+=module +setl lispwords+=receive +setl lispwords+=select +setl lispwords+=set!-values + +let b:undo_ftplugin = b:undo_ftplugin . ' keywordprg<' + +if exists('g:loaded_matchit') && !exists('b:match_words') + let b:match_words = '#>:<#' + let b:undo_ftplugin = b:undo_ftplugin . ' | unlet! b:match_words' +endif |