From 2bff8ca6cf15a2be467ccbdfd6dba9e19cb31dec Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Thu, 13 Apr 2017 22:47:29 -0700 Subject: [PATCH] https url --- plugin/wakatime.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index 48cfcb7..09ba95c 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -82,7 +82,7 @@ let s:VERSION = '4.0.14' 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$', ' PULLREQ_EDITMSG$', ' MERGE_MSG$', ' TAG_EDITMSG$'], s:config_file) - echo "[WakaTime] Setup complete! Visit http://wakatime.com to view your logged time." + echo "[WakaTime] Setup complete! Visit https://wakatime.com to view your coding activity." endif " Make sure config file has api_key @@ -95,7 +95,7 @@ let s:VERSION = '4.0.14' let key = input("[WakaTime] Enter your wakatime.com api key: ") let lines = lines + [join(['api_key', key], '=')] call writefile(lines, s:config_file) - echo "[WakaTime] Setup complete! Visit http://wakatime.com to view your logged time." + echo "[WakaTime] Setup complete! Visit https://wakatime.com to view your coding activity." endif endif