Skip to content

Commit a755aba

Browse files
committed
fix(tmux_buffers): multiprocess upvalue (#2690)
1 parent beaa4e8 commit a755aba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lua/fzf-lua/providers/tmux.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ M.buffers = function(opts)
1212
opts = config.normalize_opts(opts, "tmux.buffers")
1313
opts.fn_transform = function(x)
1414
local buf, data = x:match([[^(.-):%s+%d+%s+bytes: "(.*)"$]])
15-
return string.format("[%s] %s", utils.ansi_codes.yellow(buf), data)
15+
return string.format("[%s] %s", FzfLua.utils.ansi_codes.yellow(buf), data)
1616
end
1717

1818
opts.fzf_opts["--preview"] = shell.stringify_cmd(function(items)

0 commit comments

Comments
 (0)