* Missed in 154ba7d

* utils/change-theme: Check theme name for magic chars
This commit is contained in:
Aki 2021-08-16 09:18:31 +05:30 committed by GitHub
parent 9c134872fb
commit 4abf43aa99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -110,7 +110,6 @@ M.theme_switcher = function(opts)
end
if reload_theme(final_theme) then
vim.g.current_nvchad_theme = final_theme
if change then
-- ask for confirmation to set as default theme
local ans = string.lower(vim.fn.input("Set " .. new_theme .. " as default theme ? [y/N] ")) == "y"
@ -120,11 +119,8 @@ M.theme_switcher = function(opts)
else
-- will be used in restoring nvchad theme var
final_theme = current_theme
vim.g.current_nvchad_theme = final_theme
end
end
-- open a buffer and close it to reload the statusline
vim.cmd("new|bwipeout")
else
final_theme = current_theme
end