Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SirAppSec committed Sep 7, 2024
1 parent 4b77784 commit 89f90f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/hacker-helper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,9 @@ end, { noremap = true, silent = true, desc = "Octal Decode" })

-- MD5 Hash
vim.keymap.set("v", M.config.prefix .. M.config.keys.hash_prefix .. M.config.keys.hash_md5, function()
M.transform_selection(function(text)
selection_util.hash_selection(function(text)
return M.hash_text(text, "md5")
end, "hash", "md5") -- Passing "hash" as the mode and "md5" as the encoding type
end) -- Passing "hash" as the mode and "md5" as the encoding type
end, { noremap = true, silent = true, desc = "MD5 Hash" })

-- SHA-1 Hash
Expand Down

0 comments on commit 89f90f5

Please sign in to comment.