Skip to content

Commit

Permalink
chore: slightly shorten notification title
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Nov 17, 2024
1 parent 4005361 commit 8287ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/genghis/support/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ end
function M.notify(msg, level, opts)
if not level then level = "info" end
if not opts then opts = {} end
opts.title = opts.title and "nvim-genghis: " .. opts.title or "nvim-genghis"
opts.title = opts.title and "Genghis: " .. opts.title or "Genghis"
vim.notify(msg, vim.log.levels[level:upper()], opts)
end

Expand Down

0 comments on commit 8287ab9

Please sign in to comment.