annotate runtime/ftplugin/bst.vim @ 11392:dc2800c3572b
v8.0.0581
patch 8.0.0581: moving folded text is sometimes not correct
commit https://github.com/vim/vim/commit/94be619e30e82d28cadeea5e0766c6f5c321ff8b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 22 22:40:11 2017 +0200
patch 8.0.0581: moving folded text is sometimes not correct
Problem: Moving folded text is sometimes not correct.
Solution: Bail out when "move_end" is zero. (Matthew Malcomson)
author |
Christian Brabandt <cb@256bit.org> |
date |
Sat, 22 Apr 2017 22:45:04 +0200 |
parents |
7bc41231fbc7 |
children |
|
rev |
line source |
1121
|
1 " Vim filetype plugin file
|
|
2 " Language: bst
|
|
3 " Author: Tim Pope <vimNOSPAM@tpope.info>
|
2034
|
4 " $Id: bst.vim,v 1.1 2007/05/05 17:37:57 vimboss Exp $
|
1121
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setlocal commentstring=%\ %s
|
|
12 setlocal comments=:%
|
|
13 setlocal fo-=t fo+=croql
|
|
14
|
|
15 let b:undo_ftplugin = "setlocal com< cms< fo<"
|