From c5759a451f8a5635b5c2d19c82636c8b66676a3b Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Tue, 27 Jun 2023 22:02:27 +0200 Subject: [PATCH] fix(flash): don't override `R` in normal mode --- lua/lazyvim/plugins/extras/editor/flash.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/editor/flash.lua b/lua/lazyvim/plugins/extras/editor/flash.lua index 0d55fd6f..1b5ce595 100644 --- a/lua/lazyvim/plugins/extras/editor/flash.lua +++ b/lua/lazyvim/plugins/extras/editor/flash.lua @@ -34,7 +34,7 @@ return { }, { "R", - mode = { "n", "o", "x" }, + mode = { "o", "x" }, function() require("flash").treesitter_search() end,