Skip to content

Commit

Permalink
fix(util): added space in msg when toggling
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jan 5, 2023
1 parent 62b7428 commit 5363152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function M.toggle(option, silent)
vim.opt_local[option] = not vim.opt_local[option]:get()
if not silent then
vim.notify(
(vim.opt_local[option]:get() and "Enabled" or "Disabled") .. option,
(vim.opt_local[option]:get() and "Enabled" or "Disabled") .. " " .. option,
vim.log.levels.INFO,
{ title = "Option" }
)
Expand Down

0 comments on commit 5363152

Please sign in to comment.