We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a598c1 commit ddc0843Copy full SHA for ddc0843
1 file changed
lua/keymap/tool.lua
@@ -173,6 +173,15 @@ local mappings = {
173
:with_noremap()
174
:with_silent()
175
:with_desc("tool: Resume last search"),
176
+ ["n|<leader>fR"] = map_callback(function()
177
+ local search_backend = require("core.settings").search_backend
178
+ if search_backend == "fzf" then
179
+ require("fzf-lua").resume()
180
+ end
181
+ end)
182
+ :with_noremap()
183
+ :with_silent()
184
+ :with_desc("tool: Resume last search"),
185
186
-- Plugin: dap
187
["n|<F6>"] = map_callback(function()
0 commit comments