From f8b0021fa46420a97822ca27de93a7621db1e231 Mon Sep 17 00:00:00 2001 From: Maxim Zhukov Date: Mon, 3 Jul 2017 21:47:26 +0300 Subject: [PATCH] Change input to inputsecret Do not display the keys. --- plugin/wakatime.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index 499c923..e86cf0b 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -395,7 +395,7 @@ let s:VERSION = '5.0.2' let api_key = s:GetIniSetting('settings', 'apikey') endif - let api_key = input("[WakaTime] Enter your wakatime.com api key: ", api_key) + let api_key = inputsecret("[WakaTime] Enter your wakatime.com api key: ", api_key) call s:SetIniSetting('settings', 'api_key', api_key) endfunction