diff options
author | Teddy Wing | 2014-07-02 21:08:43 -0400 |
---|---|---|
committer | Teddy Wing | 2014-07-02 21:08:43 -0400 |
commit | 8e91fd7199961cad3918446ab05d0d11ef461dcd (patch) | |
tree | c9e0c536563cb56d00627d669e9d11ed9a118aef /vimrc | |
parent | 9a48292c5dffb741115b0241c18962bae817e2c7 (diff) | |
download | dotvim-8e91fd7199961cad3918446ab05d0d11ef461dcd.tar.bz2 |
vimrc: source the built-in matchit plugin
Allows for extended % matching, between things like < & >, HTML opening
and closing tags, and general regex for various languages.
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -239,6 +239,11 @@ " no longer necessary. All the languages I was targeting are have " built-in support with tcomment. " +" 2014.07.02: +" * Add the matchit plugin. Had a long HTML file and wanted to be able +" to go back & forth between an opening tag and closing tag that +" extended beyond the page. No more straining to follow a tab stop. +" " Pathogen @@ -420,6 +425,10 @@ endif nnoremap <leader>gu :GundoToggle<cr> +" Source matchit for expanded % matching +runtime! macros/matchit.vim + + " Mappings " ======== |