From 3e901d65cb77aa2da9db0575dbe1f855895cc54a Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 25 Sep 2020 00:14:39 +1200 Subject: Add missing boilerplate comment to plugin file --- plugin/put_date.vim | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugin/put_date.vim b/plugin/put_date.vim index 7848e95..b13083f 100644 --- a/plugin/put_date.vim +++ b/plugin/put_date.vim @@ -1,6 +1,15 @@ +" +" put_date.vim: Convenience wrapper around `strftime()` to insert the current +" date and time in the buffer, with optional format and UTC switching. +" +" Author: Tom Ryder +" License: Same as Vim itself +" if exists('loaded_put_date') || &compatible || !exists('*strftime') finish endif let loaded_put_date = 1 + +" User command to put the date into the buffer at the current line command! -bang -bar -nargs=* -range PutDate \ call put_date#(, ==# '!', ) -- cgit v1.2.3 From 81f233fde701dd16063f3e6951b7d44757d24e6d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 25 Sep 2020 00:15:36 +1200 Subject: Bump VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 6e8bf73..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.2.0 -- cgit v1.2.3