updated for version 7.0214
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim
index 0af2f95..c27cf51 100644
--- a/runtime/plugin/matchparen.vim
+++ b/runtime/plugin/matchparen.vim
@@ -1,6 +1,6 @@
 " Vim plugin for showing matching parens
 " Maintainer:  Bram Moolenaar <Bram@vim.org>
-" Last Change: 2006 Mar 03
+" Last Change: 2006 Mar 04
 
 " Exit quickly when:
 " - this plugin was already loaded (or disabled)
@@ -32,6 +32,11 @@
     let s:paren_hl_on = 0
   endif
 
+  " Avoid that we remove the popup menu.
+  if pumvisible()
+    return
+  endif
+
   " Get the character under the cursor and check if it's in 'matchpairs'.
   let c_lnum = line('.')
   let c_col = col('.')