Skip to content

Commit

Permalink
fix: icon highlights (broken on nightly) (#2522)
Browse files Browse the repository at this point in the history
  • Loading branch information
folke authored May 23, 2023
1 parent 40c31fd commit 057ee0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/telescope/make_entry.lua
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ do
display, hl_group, icon = utils.transform_devicons(entry.value, display, disable_devicons)

if hl_group then
return display, { { { 1, #icon }, hl_group } }
return display, { { { 0, #icon }, hl_group } }
else
return display
end
Expand Down Expand Up @@ -333,7 +333,7 @@ do
)

if hl_group then
return display, { { { 1, #icon }, hl_group } }
return display, { { { 0, #icon }, hl_group } }
else
return display
end
Expand Down

0 comments on commit 057ee0f

Please sign in to comment.