]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.0-012 v7.0.012
authorBram Moolenaar <Bram@vim.org>
Sat, 13 May 2006 12:48:30 +0000 (12:48 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 13 May 2006 12:48:30 +0000 (12:48 +0000)
runtime/plugin/matchparen.vim
src/version.c

index 7307d6a52e4be6747f335f7dabb2a8837291d64f..81f00c146dc1982761d001c834e118e3d832e7c3 100644 (file)
@@ -1,6 +1,6 @@
 " Vim plugin for showing matching parens
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2006 Apr 27
+" Last Change: 2006 May 11
 
 " Exit quickly when:
 " - this plugin was already loaded (or disabled)
@@ -90,7 +90,7 @@ function! s:Highlight_Matching_Pair()
   " Find the match.  When it was just before the cursor move it there for a
   " moment.
   if before > 0
-    let save_cursor = getpos('.')
+    let save_cursor = winsaveview()
     call cursor(c_lnum, c_col - before)
   endif
 
@@ -102,7 +102,7 @@ function! s:Highlight_Matching_Pair()
   let [m_lnum, m_col] = searchpairpos(c, '', c2, s_flags, s_skip, stopline)
 
   if before > 0
-    call setpos('.', save_cursor)
+    call winrestview(save_cursor)
   endif
 
   " If a match is found setup match highlighting.
index ff1671f080ae566b1e3a6bacd7648f4f5c1311b8..00639cfd7b7f6e0d7fe6882362f11d40ae297c4f 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    12,
 /**/
     11,
 /**/