comparison runtime/ftplugin/lisp.vim @ 3410:94601b379f38

Updated runtime files. Add Dutch translations.
author Bram Moolenaar <bram@vim.org>
date Sun, 11 Mar 2012 15:57:40 +0100
parents ba708ee8d69d
children 61bcafd8c648
comparison
equal deleted inserted replaced
3409:b3ccae22bae7 3410:94601b379f38
2 " Language: Lisp 2 " Language: Lisp
3 " Maintainer: Sergey Khorev <sergey.khorev@gmail.com> 3 " Maintainer: Sergey Khorev <sergey.khorev@gmail.com>
4 " URL: http://sites.google.com/site/khorser/opensource/vim 4 " URL: http://sites.google.com/site/khorser/opensource/vim
5 " Original author: Dorai Sitaram <ds26@gte.com> 5 " Original author: Dorai Sitaram <ds26@gte.com>
6 " Original URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html 6 " Original URL: http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html
7 " Last Change: Jan 9, 2012 7 " Last Change: Mar 5, 2012
8 8
9 " Only do this when not done yet for this buffer 9 " Only do this when not done yet for this buffer
10 if exists("b:did_ftplugin") 10 if exists("b:did_ftplugin")
11 finish 11 finish
12 endif 12 endif
22 22
23 " make comments behaviour like in c.vim 23 " make comments behaviour like in c.vim
24 " e.g. insertion of ;;; and ;; on normal "O" or "o" when staying in comment 24 " e.g. insertion of ;;; and ;; on normal "O" or "o" when staying in comment
25 setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|# 25 setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|#
26 setl formatoptions+=croql 26 setl formatoptions+=croql
27
28 let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp<"