We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beaa4e8 commit a755abaCopy full SHA for a755aba
1 file changed
lua/fzf-lua/providers/tmux.lua
@@ -12,7 +12,7 @@ M.buffers = function(opts)
12
opts = config.normalize_opts(opts, "tmux.buffers")
13
opts.fn_transform = function(x)
14
local buf, data = x:match([[^(.-):%s+%d+%s+bytes: "(.*)"$]])
15
- return string.format("[%s] %s", utils.ansi_codes.yellow(buf), data)
+ return string.format("[%s] %s", FzfLua.utils.ansi_codes.yellow(buf), data)
16
end
17
18
opts.fzf_opts["--preview"] = shell.stringify_cmd(function(items)
0 commit comments