diff options
| author | kongjun <kongjun18@outlook.com> | 2025-05-06 10:14:39 +0000 |
|---|---|---|
| committer | kongjun <kongjun18@outlook.com> | 2025-05-06 18:53:58 +0800 |
| commit | a9e7d700eb546800e3d341bc53667964ac821a38 (patch) | |
| tree | bf21093fa70c8ed8014e70f4841714d622ec651e /lua/encrypt/helpers.lua | |
| parent | c7a16c626a0379d9304e0337348affb4bde9ba4e (diff) | |
| download | encrypt.nvim-a9e7d700eb546800e3d341bc53667964ac821a38.tar.gz | |
feat: handle the case where the inputsecret() is cancelled
Diffstat (limited to 'lua/encrypt/helpers.lua')
| -rw-r--r-- | lua/encrypt/helpers.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/encrypt/helpers.lua b/lua/encrypt/helpers.lua index b740f28..c88b448 100644 --- a/lua/encrypt/helpers.lua +++ b/lua/encrypt/helpers.lua @@ -6,6 +6,9 @@ local getPasswordFactory = function() local key = string.format("%s", vim.fn.bufnr()) if bufferPasswordMap[key] == nil then password = vim.fn.inputsecret("Enter password: ") + if password == "" then + vim.notify("Password is cancelled", vim.log.levels.WARN) + end bufferPasswordMap[key] = password end return bufferPasswordMap[key] |
