From a490f364cd1f7e3b4ac2586d622871237333f859 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Wed, 6 May 2015 09:18:54 -0700 Subject: [PATCH] don't log time to git temporary files --- plugin/wakatime.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index 3502db1..49bc3f5 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -72,7 +72,7 @@ let s:VERSION = '4.0.0' if !filereadable(s:config_file) let key = input("[WakaTime] Enter your wakatime.com api key: ") if key != '' - call writefile(['[settings]', 'debug = false', printf("api_key = %s", key), 'hidefilenames = false', 'ignore =', ' COMMIT_EDITMSG$', ' TAG_EDITMSG$'], s:config_file) + call writefile(['[settings]', 'debug = false', printf("api_key = %s", key), 'hidefilenames = false', 'ignore =', ' COMMIT_EDITMSG$', ' PULLREQ_EDITMSG$', ' MERGE_MSG$', ' TAG_EDITMSG$'], s:config_file) echo "[WakaTime] Setup complete! Visit http://wakatime.com to view your logged time." endif