mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-07 21:24:51 +08:00
Update version.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
" File: autoload/delimitMate.vim
|
" File: autoload/delimitMate.vim
|
||||||
" Version: 2.5.1
|
" Version: 2.6
|
||||||
" Modified: 2010-09-30
|
" Modified: 2011-01-14
|
||||||
" Description: This plugin provides auto-completion for quotes, parens, etc.
|
" Description: This plugin provides auto-completion for quotes, parens, etc.
|
||||||
" Maintainer: Israel Chauca F. <israelchauca@gmail.com>
|
" Maintainer: Israel Chauca F. <israelchauca@gmail.com>
|
||||||
" Manual: Read ":help delimitMate".
|
" Manual: Read ":help delimitMate".
|
||||||
|
|||||||
@@ -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 ~
|
Version Date Release notes ~
|
||||||
|---------|------------|-----------------------------------------------------|
|
|---------|------------|-----------------------------------------------------|
|
||||||
2.6 2010-09-30 * Current release:
|
2.6 2011-01-14 * Current release:
|
||||||
- Add smart_matchpairs feature.
|
- Add smart_matchpairs feature.
|
||||||
- Add mapping to jump over contiguous delimiters.
|
- Add mapping to jump over contiguous delimiters.
|
||||||
- Fix behaviour of b:loaded_delimitMate.
|
- Fix behaviour of b:loaded_delimitMate.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
" File: plugin/delimitMate.vim
|
" File: plugin/delimitMate.vim
|
||||||
" Version: 2.5.1
|
" Version: 2.6
|
||||||
" Modified: 2010-09-30
|
" Modified: 2011-01-14
|
||||||
" Description: This plugin provides auto-completion for quotes, parens, etc.
|
" Description: This plugin provides auto-completion for quotes, parens, etc.
|
||||||
" Maintainer: Israel Chauca F. <israelchauca@gmail.com>
|
" Maintainer: Israel Chauca F. <israelchauca@gmail.com>
|
||||||
" Manual: Read ":help delimitMate".
|
" Manual: Read ":help delimitMate".
|
||||||
@@ -27,7 +27,7 @@ if v:version < 700
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
let s:loaded_delimitMate = 1
|
let s:loaded_delimitMate = 1
|
||||||
let delimitMate_version = "2.5.1"
|
let delimitMate_version = "2.6"
|
||||||
|
|
||||||
function! s:option_init(name, default) "{{{
|
function! s:option_init(name, default) "{{{
|
||||||
let b = exists("b:delimitMate_" . a:name)
|
let b = exists("b:delimitMate_" . a:name)
|
||||||
|
|||||||
Reference in New Issue
Block a user