Mercurial > vim
annotate runtime/ftplugin/lisp.vim @ 14978:d148cd1163a5 v8.1.0500
patch 8.1.0500: cleaning up in src/tee may not always work
commit https://github.com/vim/vim/commit/833e5dab143034b7e43bc0be49b2eb3687ff9ab7
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Oct 28 15:43:58 2018 +0100
patch 8.1.0500: cleaning up in src/tee may not always work
Problem: Cleaning up in src/tee may not always work.
Solution: Use "rm" when appropriate. (Michael Soyka, closes https://github.com/vim/vim/issues/3571)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 28 Oct 2018 15:45:05 +0100 |
parents | 9521463d4fc1 |
children | ef454a7f485d |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin |
2 " Language: Lisp | |
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 | |
5425 | 7 " Last Change: Oct 23, 2013 |
7 | 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 | |
16 | |
17 setl comments=:; | |
18 setl define=^\\s*(def\\k* | |
19 setl formatoptions-=t | |
20 setl iskeyword+=+,-,*,/,%,<,=,>,:,$,?,!,@-@,94 | |
21 setl lisp | |
4119 | 22 setl commentstring=;%s |
36 | 23 |
24 setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|# | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3256
diff
changeset
|
25 |
4119 | 26 let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp< commentstring<" |