aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index f759d0f1..dfa6c7ce 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -143,7 +143,7 @@ endif
" final one, since every directory we want to create in this file should be
" locked down in this way.
"
-function s:EnsureDir(path) abort
+function! s:EnsureDir(path) abort
let path = expand(a:path)
return isdirectory(path)
\ || exists('*mkdir') && mkdir(path, 'p', 0700)
@@ -1185,12 +1185,12 @@ command PutDate
" getenv() and setenv() functions does not seem to fix it. It works fine in
" Debian GNU/Linux's packaged v8.0.x.
"
-function! UTC(command) abort
+function! s:UTC(command) abort
let tz = expand('$TZ')
let $TZ = 'UTC' | execute a:command | let $TZ = tz
endfunction
command -complete=command -nargs=1 UTC
- \ call UTC(<q-args>)
+ \ call s:UTC(<q-args>)
" Leader,d inserts the local date (RFC 2822)
nnoremap <Leader>d