diff --git a/README.markdown b/README.markdown index f73d507..44c84f9 100644 --- a/README.markdown +++ b/README.markdown @@ -28,6 +28,14 @@ Default disable, put this line in vimrc: let g:eregex_default_enable = 0 +## Changes + +### 2.60 + +* Support backword search. +* Support count argument. +* Use function to auto map keys. + ## License Author : 安久津 diff --git a/plugin/eregex.vim b/plugin/eregex.vim index 1997991..29efa3c 100644 --- a/plugin/eregex.vim +++ b/plugin/eregex.vim @@ -1,12 +1,13 @@ "============================================================================= " File: eregex.vim and eregex_e.vim " Author: AKUTSU toshiyuki +" Maintainer: Kao, Wei-Ko " Requirements: Vim version 6.1 and later. " Description: eregex.vim is a converter from extended regex to vim regex " eregex_e.vim is an evaluater for command of eregex.vim " The meaning of extended regex is pseudo ruby/perl-style regex. -" Previous $Id: eregex.vim,v 2.55 2003-09-19 17:39:41+09 ta Exp $ -" $Id: eregex.vim,v 2.56 2010-10-18 11:59:41+08 ta Exp $ +" Previous $Id: eregex.vim,v 2.56 2010-10-18 11:59:41+08 ta Exp $ +" $Id: eregex.vim,v 2.60 2013-02-22 14:38:41+08 ta Exp $ " Note: English isn't my mother tongue. "============================================================================= " Principle: @@ -279,7 +280,7 @@ if exists('eregex_replacement') endif "v240 -let s:tmp=matchstr("$Revision: 2.56 $", '[0-9.]\+') +let s:tmp=matchstr("$Revision: 2.60 $", '[0-9.]\+') let s:maj=matchstr(s:tmp, '\d\+') * 100 let s:min=matchstr(s:tmp, '\.\zs\d\+') + 0 let s:version = s:maj + s:min