Mercurial > vim
annotate runtime/ftplugin/lisp.vim @ 33486:93c715c63a4a v9.0.1994
patch 9.0.1994: inconsistent feature description
Commit: https://github.com/vim/vim/commit/ac9c6d5c786a016ca1dce297d167a5a963881f7e
Author: RestorerZ <restorer@mail2k.ru>
Date: Thu Oct 5 22:25:12 2023 +0200
patch 9.0.1994: inconsistent feature description
Problem: inconsistent feature description
Solution: delete old mentioned feature sets small and big
The may however still be mentioned for historical reasons. e.g. The
last Amiga built version is for Vim6.2 and is still a big version.
closes: #13273
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: RestorerZ <restorer@mail2k.ru>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 05 Oct 2023 22:30:05 +0200 |
parents | 4ab4ef0c48b1 |
children | 7c7432a53a6c |
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 | |
24278 | 7 " Last Change: Mar 10, 2021 |
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 | |
24024 | 17 setl comments=:;;;;,:;;;,:;;,:;,sr:#\|,mb:\|,ex:\|# |
7 | 18 setl define=^\\s*(def\\k* |
19 setl formatoptions-=t | |
20 setl iskeyword+=+,-,*,/,%,<,=,>,:,$,?,!,@-@,94 | |
21 setl lisp | |
4119 | 22 setl commentstring=;%s |
36 | 23 |
4119 | 24 let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp< commentstring<" |