• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision048f26eb43a348e49fc4f9deaca03779c2de595e (tree)
Zeit2007-08-19 01:21:50
Autorvimboss
Commitervimboss

Log Message

updated for version 7.1-082

Ändern Zusammenfassung

Diff

diff -r 151a805b2ddc -r 048f26eb43a3 runtime/doc/pi_paren.txt
--- a/runtime/doc/pi_paren.txt Sat Aug 18 15:47:34 2007 +0000
+++ b/runtime/doc/pi_paren.txt Sat Aug 18 16:21:50 2007 +0000
@@ -12,8 +12,8 @@
1212 You can avoid loading this plugin by setting the "loaded_matchparen" variable: >
1313 :let loaded_matchparen = 1
1414
15-The plugin installs CursorMoved autocommands to redefine the match
16-highlighting.
15+The plugin installs CursorMoved, CursorMovedI and WinEnter autocommands to
16+redefine the match highlighting.
1717
1818 To disable the plugin after it was loaded use this command: >
1919
diff -r 151a805b2ddc -r 048f26eb43a3 runtime/plugin/matchparen.vim
--- a/runtime/plugin/matchparen.vim Sat Aug 18 15:47:34 2007 +0000
+++ b/runtime/plugin/matchparen.vim Sat Aug 18 16:21:50 2007 +0000
@@ -1,6 +1,6 @@
11 " Vim plugin for showing matching parens
22 " Maintainer: Bram Moolenaar <Bram@vim.org>
3-" Last Change: 2007 Jul 30
3+" Last Change: 2007 Aug 8
44
55 " Exit quickly when:
66 " - this plugin was already loaded (or disabled)
@@ -13,7 +13,7 @@
1313
1414 augroup matchparen
1515 " Replace all matchparen autocommands
16- autocmd! CursorMoved,CursorMovedI * call s:Highlight_Matching_Pair()
16+ autocmd! CursorMoved,CursorMovedI,WinEnter * call s:Highlight_Matching_Pair()
1717 augroup END
1818
1919 " Skip the rest if it was already done.
@@ -126,7 +126,8 @@
126126 endfunction
127127
128128 " Define commands that will disable and enable the plugin.
129-command! NoMatchParen 3match none | unlet! g:loaded_matchparen | au! matchparen
130-command! DoMatchParen runtime plugin/matchparen.vim | doau CursorMoved
129+command! NoMatchParen windo 3match none | unlet! g:loaded_matchparen |
130+ \ au! matchparen
131+command! DoMatchParen runtime plugin/matchparen.vim | windo doau CursorMoved
131132
132133 let &cpo = cpo_save
diff -r 151a805b2ddc -r 048f26eb43a3 src/version.c
--- a/src/version.c Sat Aug 18 15:47:34 2007 +0000
+++ b/src/version.c Sat Aug 18 16:21:50 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 82,
671+/**/
670672 81,
671673 /**/
672674 80,
Show on old repository browser