annotate runtime/ftplugin/chicken.vim @ 13259:f99dea69711d

Added tag v8.0.1503 for changeset 6acb9148d83e8f0bc8d9153efec672912f94ec36
author Christian Brabandt <cb@256bit.org>
date Sun, 11 Feb 2018 15:45:06 +0100
parents 167a030448fa
children 02b3f719eacb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13231
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " CHICKEN-specific Vim customizations
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 " Last Change: 2018-01-06
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 " Author: Evan Hanson <evhan@foldling.org>
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 " Maintainer: Evan Hanson <evhan@foldling.org>
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 " URL: https://foldling.org/vim/ftplugin/chicken.vim
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 " Notes: These are supplemental settings, to be loaded after the core
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 " Scheme ftplugin file (ftplugin/scheme.vim). Enable it by setting
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 " b:is_chicken=1 and filetype=scheme.
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 if !exists('b:did_scheme_ftplugin')
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 finish
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 endif
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 setl keywordprg=chicken-doc
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 setl lispwords+=and-let*
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 setl lispwords+=begin-for-syntax
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 setl lispwords+=compiler-typecase
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 setl lispwords+=condition-case
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 setl lispwords+=define-compiler-syntax
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 setl lispwords+=define-constant
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 setl lispwords+=define-external
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 setl lispwords+=define-for-syntax
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 setl lispwords+=define-inline
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 setl lispwords+=define-record
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 setl lispwords+=define-record-printer
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 setl lispwords+=define-specialization
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 setl lispwords+=define-syntax-rule
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 setl lispwords+=eval-when
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 setl lispwords+=fluid-let
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31 setl lispwords+=handle-exceptions
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 setl lispwords+=let-compiler-syntax
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 setl lispwords+=let-optionals
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 setl lispwords+=let-optionals*
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 setl lispwords+=letrec-values
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 setl lispwords+=match
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 setl lispwords+=match-lambda
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 setl lispwords+=match-lambda*
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 setl lispwords+=match-let
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 setl lispwords+=match-let*
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 setl lispwords+=module
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42 setl lispwords+=receive
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 setl lispwords+=select
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 setl lispwords+=set!-values
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 let b:undo_ftplugin = b:undo_ftplugin . ' keywordprg<'
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 if exists('g:loaded_matchit') && !exists('b:match_words')
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49 let b:match_words = '#>:<#'
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 let b:undo_ftplugin = b:undo_ftplugin . ' | unlet! b:match_words'
167a030448fa Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51 endif