Mercurial > vim
view runtime/ftplugin/scheme.vim @ 3194:972bd3fca556 v7.3.367
updated for version 7.3.367
Problem: :wundo and :rundo use a wrong checksum.
Solution: Include the last line when computing the hash. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Thu, 08 Dec 2011 15:14:09 +0100 |
parents | 8cd729851562 |
children | ba708ee8d69d |
line wrap: on
line source
" Vim filetype plugin " Language: Scheme " Maintainer: Sergey Khorev <sergey.khorev@gmail.com> " URL: http://iamphet.nm.ru/vim " Original author: Dorai Sitaram <ds26@gte.com> " Original URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html " Last Change: Nov 22, 2004 runtime! ftplugin/lisp.vim ftplugin/lisp_*.vim ftplugin/lisp/*.vim if exists("b:is_mzscheme") || exists("is_mzscheme") " improve indenting setl iskeyword+=#,%,^ setl lispwords+=module,parameterize,let-values,let*-values,letrec-values setl lispwords+=define-values,opt-lambda,case-lambda,syntax-rules,with-syntax,syntax-case setl lispwords+=define-signature,unit,unit/sig,compund-unit/sig,define-values/invoke-unit/sig endif if exists("b:is_chicken") || exists("is_chicken") " improve indenting setl iskeyword+=#,%,^ setl lispwords+=let-optionals,let-optionals*,declare setl lispwords+=let-values,let*-values,letrec-values setl lispwords+=define-values,opt-lambda,case-lambda,syntax-rules,with-syntax,syntax-case setl lispwords+=cond-expand,and-let*,foreign-lambda,foreign-lambda* endif