Compare commits

...

1 Commits

Author SHA1 Message Date
Dmitriy Kovalenko 9fc29fbafc fix: Single parenthesis error
docs / docs (push) Has been cancelled
fixes https://github.com/dmtrKovalenko/fff.nvim/issues/351
2026-04-08 14:19:23 -07:00
+1 -1
View File
@@ -225,7 +225,7 @@ function M.apply_highlights(item, ctx, item_idx, buf, ns_id, line_idx, line_cont
-- 9. Query match
if ctx.query and ctx.query ~= '' then
local match_start, match_end = string.find(line_content, ctx.query, 1)
local match_start, match_end = string.find(line_content, ctx.query, 1, true)
if match_start and match_end then
vim.api.nvim_buf_set_extmark(
buf,