diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-09-14 17:55:08 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-09-14 17:55:08 +0200 |
commit | 5302d9ebc1be723a25ff3dc62388305f6862749d (patch) | |
tree | dcd450a19d82d9eda33ba5fb9e1becd85f87a469 /runtime/plugin | |
parent | ddab33232a81e713c2748fc3daab763f07dd76f1 (diff) | |
download | vim-git-5302d9ebc1be723a25ff3dc62388305f6862749d.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/matchparen.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 3cc732bc4..03a428d6a 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: 2010 Nov 16 +" Last Change: 2011 Aug 27 " Exit quickly when: " - this plugin was already loaded (or disabled) @@ -82,7 +82,7 @@ function! s:Highlight_Matching_Pair() endif " When not in a string or comment ignore matches inside them. - " We match "escape" for special items, such as listpEscapeSpecial. + " We match "escape" for special items, such as lispEscapeSpecial. let s_skip ='synIDattr(synID(line("."), col("."), 0), "name") ' . \ '=~? "string\\|character\\|singlequote\\|escape\\|comment"' execute 'if' s_skip '| let s_skip = 0 | endif' |