annotate runtime/ftplugin/rst.vim @ 10789:214417c527b5
v8.0.0284
patch 8.0.0284: collapse buffers test failed once
commit https://github.com/vim/vim/commit/b245559fa9b03bfb0d0f77023120e60d870f0b56
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 1 18:00:13 2017 +0100
patch 8.0.0284: collapse buffers test failed once
Problem: The Test_collapse_buffers() test failed once, looks like it is
flaky.
Solution: Add it to the list of flaky tests.
author |
Christian Brabandt <cb@256bit.org> |
date |
Wed, 01 Feb 2017 18:15:03 +0100 |
parents |
f4f8014d516e |
children |
1218c5353e2b |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
375
|
2 " Language: reStructuredText documentation format
|
839
|
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
|
1698
|
4 " Latest Revision: 2008-07-09
|
7
|
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< et< fo<"
|
7
|
15
|
375
|
16 setlocal comments=fb:.. commentstring=..\ %s expandtab
|
389
|
17 setlocal formatoptions+=tcroql
|
1698
|
18
|
|
19 let &cpo = s:cpo_save
|
|
20 unlet s:cpo_save
|