AutoYADM commit: 2024-12-20 21:15:02

This commit is contained in:
Daniel Fichtinger 2024-12-20 21:15:02 -05:00
parent 215723be9c
commit ce54b3c8a8
2 changed files with 14 additions and 7 deletions

View file

@ -54,9 +54,12 @@ return {
"s",
mode = { "n", "x", "o" },
function()
require("flash").jump({ jump = {
require("flash").jump({
jump = {
inclusive = true,
} })
-- pos = "end",
},
})
end,
desc = "Flash Inclusive",
},
@ -64,9 +67,12 @@ return {
"<c-s>",
mode = { "n", "x", "o" },
function()
require("flash").jump({ jump = {
require("flash").jump({
jump = {
inclusive = false,
} })
-- pos = "end",
},
})
end,
desc = "Flash Exclusive",
},

View file

@ -5,10 +5,11 @@ return {
{ "e", "<cmd>lua require('spider').motion('e')<CR>", mode = { "n", "o", "x" } },
{ "w", "<cmd>lua require('spider').motion('w')<CR>", mode = { "n", "o", "x" } },
{ "b", "<cmd>lua require('spider').motion('b')<CR>", mode = { "n", "o", "x" } },
{ "ge", "<cmd>lua require('spider').motion('ge')<CR>", mode = { "n", "o", "x" } },
},
opts = {
skipInsignificantPunctuation = true,
consistentOperatorPending = false, -- see "Consistent Operator-pending Mode" in the README
consistentOperatorPending = true, -- see "Consistent Operator-pending Mode" in the README
subwordMovement = true,
customPatterns = {}, -- check "Custom Movement Patterns" in the README for details
},