annotate runtime/ftplugin/denyhosts.vim @ 12624:ae2802b6bf7d
v8.0.1190
patch 8.0.1190: unusable after opening new window in BufWritePre event
commit https://github.com/vim/vim/commit/2c33d7bb69c4c2c5b0e39b03cc4b0c04cfdfbb0b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 14 16:06:20 2017 +0200
patch 8.0.1190: unusable after opening new window in BufWritePre event
Problem: Vim becomes unusable after opening new window in BufWritePre
event.
Solution: Call not_exiting(). (Martin Tournoij, closes #2205)
Also for "2q" when a help window is open. Add a test.
author |
Christian Brabandt <cb@256bit.org> |
date |
Sat, 14 Oct 2017 16:15:04 +0200 |
parents |
1218c5353e2b |
children |
|
rev |
line source |
1622
|
1 " Vim filetype plugin file
|
11062
|
2 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
3 " Latest Revision: 2007-12-04
|
1622
|
4
|
|
5 if exists("b:did_ftplugin")
|
|
6 finish
|
|
7 endif
|
|
8 let b:did_ftplugin = 1
|
|
9
|
|
10 let s:cpo_save = &cpo
|
|
11 set cpo&vim
|
|
12
|
|
13 let b:undo_ftplugin = "setl com< cms< fo<"
|
|
14
|
|
15 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql
|
|
16
|
1698
|
17 let &cpo = s:cpo_save
|
|
18 unlet s:cpo_save
|