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

View file

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