annotate runtime/ftplugin/bst.vim @ 7999:92ad477c6ab3
v7.4.1294
commit https://github.com/vim/vim/commit/7280140c08799f683ef31a6c1019e283c3dc13aa
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 9 11:37:50 2016 +0100
patch 7.4.1294
Problem: job_stop() only kills the started process.
Solution: Send the signal to the process group. (Olaf Dabrunz)
author |
Christian Brabandt <cb@256bit.org> |
date |
Tue, 09 Feb 2016 11:45:05 +0100 |
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<"
|