Dan Heller wrote: > > I think you're talking about a plugin call > pi_paren.txt (see :help pi_paren ) To turn it off > > :NoMatchParen > > > FINALLY! Man, that was aggravating. > How can I prevent the loading of the plugin in the first place?
By putting let g:loaded_matchparen = 1 in your .vimrc. Most plugins prevent double-loading by testing if g:loaded_SomePlugin exists; if so, loading is aborted. Hence, with this command you're telling matchparen not to bother loading. Regards, Chip Campbell --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
