diff --git a/Makefile b/Makefile index 861df41..451bb84 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ uninstall: rm -f $(VIMFOLDER)/autoload/$(PLUGIN)Tests.txt undo: - for i in **/*.orig; do mv -f "$$i" "$${i%.*}"; done + for i in */*.orig; do mv -f "$$i" "$${i%.*}"; done README: @echo README @@ -62,7 +62,7 @@ version: perl -i.orig -pne 'if (/let\sdelimitMate_version/) {s/(\d+\.\d+)/$(VERSION)/e}' $(SCRIPT) perl -i.orig -pne 'if (/beasts/) {s/(v\d+\.\d+)/v.$(VERSION)/e}' $(DOC) perl -i.orig -pne 'if (/^"\sModified:/) {s/(\d+-\d+-\d+)/sprintf("%s", `date "+%F"`)/e}' $(SCRIPT) $(AUTOL) - perl -i.orig -pne 'if (/^\s+$(VERSION)\s+\d+-\d+-\d+\s+\*/) {s/(\d+-\d+-\d+)/$(DATE)/e}' $(DOC) + perl -i.orig -MPOSIX -pne 'if (/^\s+$(VERSION)\s+\d+-\d+-\d+\s+\*/) {$$now_string = strftime "%F", localtime; s/(\d+-\d+-\d+)/$$now_string/e}' $(DOC) @echo Version: $(VERSION) echo: diff --git a/README b/README index 76f53ca..027c3c8 100644 --- a/README +++ b/README @@ -519,7 +519,7 @@ This script was inspired by the auto-completion of delimiters of TextMate. Version Date Release notes ~ |---------|------------|-----------------------------------------------------| - 2.2 2010-05-20 * Current release: + 2.2 2010-05-16 * Current release: - Added command to switch the plug-in on and off. - Fix: some problems with , and . - Fix: A small problem when inserting a delimiter at diff --git a/autoload/delimitMate.vim b/autoload/delimitMate.vim index 8e2927b..f61a2af 100644 --- a/autoload/delimitMate.vim +++ b/autoload/delimitMate.vim @@ -3,6 +3,8 @@ " Version: 2.2 " Modified: 2010-05-16 + + " 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 76f53ca..027c3c8 100644 --- a/doc/delimitMate.txt +++ b/doc/delimitMate.txt @@ -519,7 +519,7 @@ This script was inspired by the auto-completion of delimiters of TextMate. Version Date Release notes ~ |---------|------------|-----------------------------------------------------| - 2.2 2010-05-20 * Current release: + 2.2 2010-05-16 * Current release: - Added command to switch the plug-in on and off. - Fix: some problems with , and . - Fix: A small problem when inserting a delimiter at diff --git a/plugin/delimitMate.vim b/plugin/delimitMate.vim index d955b43..8c54414 100644 --- a/plugin/delimitMate.vim +++ b/plugin/delimitMate.vim @@ -3,6 +3,8 @@ " Version: 2.2 " Modified: 2010-05-16 + + " Description: This plugin provides auto-completion for quotes, parens, etc. " Maintainer: Israel Chauca F. " Manual: Read ":help delimitMate".