We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7e3e2 commit 4ee42b2Copy full SHA for 4ee42b2
1 file changed
lua/fzf-lua/providers/git.lua
@@ -219,9 +219,9 @@ M.stash = function(opts)
219
opts.fn_transform = function(x)
220
local stash, rest = x:match("([^:]+)(.*)")
221
if stash then
222
- stash = utils.ansi_codes.yellow(stash)
+ stash = FzfLua.utils.ansi_codes.yellow(stash)
223
stash = stash:gsub("{%d+}", function(s)
224
- return ("%s"):format(utils.ansi_codes.green(tostring(s)))
+ return ("%s"):format(FzfLua.utils.ansi_codes.green(tostring(s)))
225
end)
226
end
227
return (not stash or not rest) and x or stash .. rest
0 commit comments