Skip to content

Commit

Permalink
fix(char): force before=false with f, F motion (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
wvjgsuhp committed Jun 27, 2023
1 parent 3c86b68 commit 40313ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/flash/plugins/char.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ M.state = nil ---@type Flash.State?

---@type table<Flash.Char.Motion, Flash.State.Config>
M.motions = {
f = { highlight = { label = { after = { 0, 0 } } } },
f = { highlight = { label = { after = { 0, 0 }, before = false } } },
t = {},
F = { search = { forward = false }, highlight = { label = { after = { 0, 0 } } } },
F = { search = { forward = false }, highlight = { label = { after = { 0, 0 }, before = false } } },
T = { search = { forward = false }, highlight = { label = { before = true, after = false } } },
}

Expand Down

0 comments on commit 40313ec

Please sign in to comment.