Skip to content

Commit

Permalink
fix(history): add space between icon and message (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
boltlessengineer committed Jun 6, 2022
1 parent 1b851fb commit 8252aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/notify/init.lua
Expand Up @@ -136,7 +136,7 @@ function notify._print_history()
{ notif.title[1], "NotifyLogTitle" },
{ #notif.title[1] > 0 and " " or "", "MsgArea" },
{ notif.icon, "Notify" .. notif.level .. "Title" },
{ #notif.title[1] > 0 and " " or "", "MsgArea" },
{ " ", "MsgArea" },
{ notif.level, "Notify" .. notif.level .. "Title" },
{ " ", "MsgArea" },
{ table.concat(notif.message, "\n"), "MsgArea" },
Expand Down

0 comments on commit 8252aae

Please sign in to comment.