Skip to content
Snippets Groups Projects
Commit 3b1ddfed authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.0224

parent c7d89358
No related merge requests found
" Vim plugin for showing matching parens
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2006 Mar 04
" Last Change: 2006 Mar 14
" Exit quickly when:
" - this plugin was already loaded (or disabled)
......@@ -23,6 +23,9 @@ if exists("*s:Highlight_Matching_Pair")
finish
endif
let cpo_save = &cpo
set cpo-=C
" The function that is invoked (very often) to define a ":match" highlighting
" for any matching paren.
function! s:Highlight_Matching_Pair()
......@@ -102,3 +105,5 @@ endfunction
" Define commands that will disable and enable the plugin.
command! NoMatchParen 3match none | unlet! g:loaded_matchparen | au! matchparen
command! DoMatchParen runtime plugin/matchparen.vim | doau CursorMoved
let &cpo = cpo_save
This diff is collapsed.
......@@ -6,7 +6,7 @@ int u_inssub __ARGS((linenr_T lnum));
int u_savedel __ARGS((linenr_T lnum, long nlines));
void u_undo __ARGS((int count));
void u_redo __ARGS((int count));
void undo_time __ARGS((int step));
void undo_time __ARGS((long step, int sec));
void u_sync __ARGS((void));
void ex_undojoin __ARGS((exarg_T *eap));
void u_unchanged __ARGS((buf_T *buf));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment