From 9934a4a5a03480bbe42321f8a41f45a737b43dfd Mon Sep 17 00:00:00 2001 From: fm39hz-workstation Date: Thu, 16 May 2024 10:31:52 +0700 Subject: [PATCH] feat: add keymap for flutter --- lua/config/keymaps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/keymaps.lua b/lua/config/keymaps.lua index 0e8709e..230dfa1 100644 --- a/lua/config/keymaps.lua +++ b/lua/config/keymaps.lua @@ -40,7 +40,7 @@ end, { desc = "Go to definition" }) map({ "n", "i", "v" }, "", function() vim.lsp.buf.declaration() end, { desc = "Go to declaration" }) -map({ "n", "i", "v" }, "rcf", "Telescope flutter commands", { desc = "Run flutter" }) +map("n", "rcf", "Telescope flutter commands", { desc = "Run flutter" }) map("x", "re", ":Refactor extract ", { desc = "Refactor Extract" }) map("x", "rf", ":Refactor extract_to_file ", { desc = "Refactor Extract to file" }) map("x", "rv", ":Refactor extract_var ", { desc = "Refactor Extract variable" })