From 3fc832efeda7b81d4815fe05ef6ac1ba54cff904 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Tue, 7 May 2019 18:39:17 -0700 Subject: [PATCH] Use --today instead of old --show-time-today argument --- plugin/wakatime.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index 6278646..b5b9ddd 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -593,7 +593,7 @@ let s:VERSION = '7.1.5' endfunction function! g:WakaTimeToday() - let cmd = s:GetCommandPrefix() + ['--show-time-today'] + let cmd = s:GetCommandPrefix() + ['--today'] echo "Today: " . s:Chomp(system(s:JoinArgs(cmd))) endfunction