annotate runtime/ftplugin/group.vim @ 18755:a0be066d0b48
v8.1.2367
patch 8.1.2367: registers are not sufficiently tested
Commit: https://github.com/vim/vim/commit/71136db1bfbc67c2e55f8070cdf0a241c643e45b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 30 19:48:46 2019 +0100
patch 8.1.2367: registers are not sufficiently tested
Problem: Registers are not sufficiently tested.
Solution: Add a few more test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5288)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 30 Nov 2019 20:00:03 +0100 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
389
|
1 " Vim filetype plugin file
|
11062
|
2 " Language: group(5) user group file
|
|
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2008-07-09
|
389
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
1698
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
389
|
14 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
15
|
|
16 setlocal comments= commentstring= formatoptions-=tcroq formatoptions+=l
|
1698
|
17
|
|
18 let &cpo = s:cpo_save
|
|
19 unlet s:cpo_save
|