From 8686edfc630efa4f180311cec33a33cac281ad67 Mon Sep 17 00:00:00 2001 From: Israel Chauca Fuentes Date: Fri, 14 Jan 2011 20:59:53 -0600 Subject: [PATCH] Update version. --- autoload/delimitMate.vim | 4 ++-- doc/delimitMate.txt | 4 ++-- plugin/delimitMate.vim | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index a2343e7..bd10975 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -1,6 +1,6 @@ " File: autoload/delimitMate.vim -" Version: 2.5.1 -" Modified: 2010-09-30 +" Version: 2.6 +" Modified: 2011-01-14 " Description: This plugin provides auto-completion for quotes, parens, etc. " Maintainer: Israel Chauca F. " Manual: Read ":help delimitMate". diff --git a/doc/delimitMate.txt b/doc/delimitMate.txt index fbf90b5..8067cf2 100644 --- a/doc/delimitMate.txt +++ b/doc/delimitMate.txt @@ -1,4 +1,4 @@ -*delimitMate.txt* Trying to keep those beasts at bay! v2.5.1 *delimitMate* +*delimitMate.txt* Trying to keep those beasts at bay! v2.6 *delimitMate* @@ -689,7 +689,7 @@ This script was inspired by the auto-completion of delimiters on TextMate. Version Date Release notes ~ |---------|------------|-----------------------------------------------------| - 2.6 2010-09-30 * Current release: + 2.6 2011-01-14 * Current release: - Add smart_matchpairs feature. - Add mapping to jump over contiguous delimiters. - Fix behaviour of b:loaded_delimitMate. diff --git a/plugin/delimitMate.vim b/plugin/delimitMate.vim index 26c1034..d41ceaa 100644 --- a/plugin/delimitMate.vim +++ b/plugin/delimitMate.vim @@ -1,6 +1,6 @@ " File: plugin/delimitMate.vim -" Version: 2.5.1 -" Modified: 2010-09-30 +" Version: 2.6 +" Modified: 2011-01-14 " Description: This plugin provides auto-completion for quotes, parens, etc. " Maintainer: Israel Chauca F. " Manual: Read ":help delimitMate". @@ -27,7 +27,7 @@ if v:version < 700 endif let s:loaded_delimitMate = 1 -let delimitMate_version = "2.5.1" +let delimitMate_version = "2.6" function! s:option_init(name, default) "{{{ let b = exists("b:delimitMate_" . a:name)