We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d6c9cf commit 2388dcdCopy full SHA for 2388dcd
lua/fzf-lua/providers/nvim.lua
@@ -254,7 +254,7 @@ M.marks = function(opts)
254
local buf = utils.CTX().bufnr
255
local entries = {}
256
local function add_mark(mark, line, col, text)
257
- if opts.marks and string.match(mark, opts.marks) then return end
+ if opts.marks and not string.match(mark, opts.marks) then return end
258
table.insert(entries, string.format("%s %s %s %s",
259
utils.ansi_codes[opts.hls.buf_nr](string.format("%4s", mark)),
260
utils.ansi_codes[opts.hls.path_linenr](string.format("%4s", tostring(line))),
0 commit comments