Skip to content

Commit

Permalink
fix(fzf): message id
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 12, 2024
1 parent 4c1efad commit a9fa1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/noice/integrations/fzf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local M = {}
function M.entry(message)
message = Format.format(message, "fzf")
local line = message._lines[1]
local hl = { message.id .. "" } ---@type string[]
local hl = { message.id .. " " } ---@type string[]
for _, text in ipairs(line._texts) do
---@type string?
local hl_group = text.extmark and text.extmark.hl_group
Expand Down

0 comments on commit a9fa1a2

Please sign in to comment.