annotate runtime/ftplugin/treetop.vim @ 16413:4734d601ebdd
v8.1.1211
patch 8.1.1211: not all user command code is tested
commit https://github.com/vim/vim/commit/e61e548dd6a20471fd81160b1c2a16089505ec8c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 27 15:05:12 2019 +0200
patch 8.1.1211: not all user command code is tested
Problem: Not all user command code is tested.
Solution: Add more tests.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 27 Apr 2019 15:15:07 +0200 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
2725
|
1 " Vim filetype plugin file
|
11062
|
2 " Language: Treetop
|
|
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2011-03-14
|
2725
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 let s:cpo_save = &cpo
|
|
12 set cpo&vim
|
|
13
|
|
14 setlocal comments=b:# commentstring=#\ %s formatoptions-=tcroq formatoptions+=l
|
|
15
|
|
16 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
17
|
|
18 let &cpo = s:cpo_save
|
|
19 unlet s:cpo_save
|