Skip to content

Commit

Permalink
fix(lua51): tostring in action help (#1346)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibhagwan committed Jul 21, 2024
1 parent e5c1490 commit a8a3466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/fzf-lua/win.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1396,7 +1396,7 @@ function FzfWin.toggle_help()
-- skips 'v == false'
table.insert(keymaps,
format_bind("action", k,
("%s"):format(v):gsub(" ", ""),
("%s"):format(tostring(v)):gsub(" ", ""),
opts.mode_width, opts.keybind_width, opts.name_width))
end
end
Expand Down

0 comments on commit a8a3466

Please sign in to comment.