mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-23 17:28:57 +02:00
fix(util): added space in msg when toggling
This commit is contained in:
parent
62b74280ab
commit
53631526ad
1 changed files with 1 additions and 1 deletions
|
@ -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" }
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue