AutoYADM commit: 2024-12-02 20:10:04

This commit is contained in:
Daniel Fichtinger 2024-12-02 20:10:04 -05:00
parent 9446ddc344
commit 19caa651a3

View file

@ -16,6 +16,10 @@ local conf = {
char = { char = {
jump_labels = true, jump_labels = true,
highlight = { backdrop = false }, highlight = { backdrop = false },
keys = { "f", "F", "t", "T" },
char_actions = function(motion)
return { [motion:lower()] = "next", [motion:upper()] = "prev" }
end,
}, },
}, },
} }
@ -33,5 +37,6 @@ return {
{ "r", mode = "o", function() require("flash").remote() end, desc = "Remote Flash" }, { "r", mode = "o", function() require("flash").remote() end, desc = "Remote Flash" },
{ "R", mode = { "o", "x" }, function() require("flash").treesitter_search() end, desc = "Treesitter Search" }, { "R", mode = { "o", "x" }, function() require("flash").treesitter_search() end, desc = "Treesitter Search" },
{ "<c-s>", mode = { "c" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" }, { "<c-s>", mode = { "c" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" },
-- { "<c-s>", mode = { "n", "x", "o" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" },
}, },
} }