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

@ -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
},