Mercurial > vim
annotate runtime/ftplugin/scheme.vim @ 4359:6d45e6f97415 v7.3.928
updated for version 7.3.928
Problem: Can't build with strict C compiler.
Solution: Move declaration to start of block. (Taro Muraoka)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 06 May 2013 06:26:15 +0200 |
parents | 61bcafd8c648 |
children | 9521463d4fc1 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin |
2 " Language: Scheme | |
36 | 3 " Maintainer: Sergey Khorev <sergey.khorev@gmail.com> |
3256 | 4 " URL: http://sites.google.com/site/khorser/opensource/vim |
36 | 5 " Original author: Dorai Sitaram <ds26@gte.com> |
6 " Original URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html | |
4119 | 7 " Last Change: Feb 12, 2013 |
3256 | 8 |
9 " Only do this when not done yet for this buffer | |
10 if exists("b:did_ftplugin") | |
11 finish | |
12 endif | |
13 | |
14 " Don't load another plugin for this buffer | |
15 let b:did_ftplugin = 1 | |
36 | 16 |
3256 | 17 " Copy-paste from ftplugin/lisp.vim |
18 setl comments=:; | |
19 setl define=^\\s*(def\\k* | |
20 setl formatoptions-=t | |
21 setl iskeyword+=+,-,*,/,%,<,=,>,:,$,?,!,@-@,94 | |
22 setl lisp | |
4119 | 23 setl commentstring=;%s |
7 | 24 |
3256 | 25 " make comments behaviour like in c.vim |
26 " e.g. insertion of ;;; and ;; on normal "O" or "o" when staying in comment | |
27 setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|# | |
28 setl formatoptions+=croql | |
29 | |
30 " Scheme-specific settings | |
36 | 31 if exists("b:is_mzscheme") || exists("is_mzscheme") |
32 " improve indenting | |
33 setl iskeyword+=#,%,^ | |
34 setl lispwords+=module,parameterize,let-values,let*-values,letrec-values | |
35 setl lispwords+=define-values,opt-lambda,case-lambda,syntax-rules,with-syntax,syntax-case | |
36 setl lispwords+=define-signature,unit,unit/sig,compund-unit/sig,define-values/invoke-unit/sig | |
37 endif | |
38 | |
39 if exists("b:is_chicken") || exists("is_chicken") | |
40 " improve indenting | |
41 setl iskeyword+=#,%,^ | |
42 setl lispwords+=let-optionals,let-optionals*,declare | |
43 setl lispwords+=let-values,let*-values,letrec-values | |
44 setl lispwords+=define-values,opt-lambda,case-lambda,syntax-rules,with-syntax,syntax-case | |
45 setl lispwords+=cond-expand,and-let*,foreign-lambda,foreign-lambda* | |
46 endif | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3256
diff
changeset
|
47 |
4119 | 48 let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lispwords< lisp< commentstring<" |