feat(nvim): show a message when refactoring code

This commit is contained in:
Sergio Laín 2024-05-22 00:12:13 +02:00
parent be95fafd58
commit a99e605db7
No known key found for this signature in database
GPG key ID: FB00AF7015FFE76B

View file

@ -4,7 +4,9 @@ return {
{ "nvim-lua/plenary.nvim" },
{ "nvim-treesitter/nvim-treesitter" },
},
opts = {},
opts = {
show_success_message = true,
},
-- stylua: ignore
keys = {
{ "<leader>cR", function() require("refactoring").select_refactor() end, mode = { "n", "x", "v" }, desc = "Refactor" },