From 9fc29fbafc3edb19609b88bbbfbc6868c765a055 Mon Sep 17 00:00:00 2001 From: Dmitriy Kovalenko Date: Wed, 8 Apr 2026 14:19:23 -0700 Subject: [PATCH] fix: Single parenthesis error fixes https://github.com/dmtrKovalenko/fff.nvim/issues/351 --- lua/fff/file_renderer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/fff/file_renderer.lua b/lua/fff/file_renderer.lua index 592666e8..d9efb36a 100644 --- a/lua/fff/file_renderer.lua +++ b/lua/fff/file_renderer.lua @@ -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,