From 09e67fedfe7c0c5e7eaad9710f962aae0f20ce28 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Tue, 9 Jul 2013 15:34:03 -0700 Subject: [PATCH] removed verbose flag --- plugin/wakatime.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index 24c96f4..30a9ef4 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -85,7 +85,7 @@ let s:VERSION = '0.2.1' if a:endtime > 1 let cmd = cmd + ['--endtime', printf('%f', a:endtime)] endif - let cmd = cmd + ['--verbose'] + "let cmd = cmd + ['--verbose'] exec 'silent !' . join(cmd, ' ') . ' &' let time = a:time if a:endtime > 1 && float2nr(round(time)) < float2nr(round(a:endtime))