aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/put_date.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/autoload/put_date.vim')
-rw-r--r--vim/autoload/put_date.vim19
1 files changed, 0 insertions, 19 deletions
diff --git a/vim/autoload/put_date.vim b/vim/autoload/put_date.vim
deleted file mode 100644
index c9f52c12..00000000
--- a/vim/autoload/put_date.vim
+++ /dev/null
@@ -1,19 +0,0 @@
-let s:rfc_2822 = '%a, %d %b %Y %T %z'
-
-function! put_date#(line, utc, format) abort
- let line = a:line
- let utc = a:utc
- let format = strlen(a:format)
- \ ? substitute(a:format, '\a', '%&', 'g')
- \ : s:rfc_2822
- if utc
- if exists('$TZ')
- let tz = $TZ
- endif
- let $TZ = 'UTC'
- endif
- execute line.'put =strftime(format)'
- if exists('tz')
- let $TZ = tz
- endif
-endfunction