* 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
2 changed files with 3 additions and 4 deletions

View File

@@ -13,6 +13,9 @@ M.change_theme = function(current_theme, new_theme)
local file = vim.fn.stdpath("config") .. "/lua/chadrc.lua"
-- store in data variable
local data = assert(M.file("r", file))
-- escape characters which can be parsed as magic chars
current_theme = current_theme:gsub("%p", "%%%0")
new_theme = new_theme:gsub("%p", "%%%0")
local find = "theme = .?" .. current_theme .. ".?"
local replace = 'theme = "' .. new_theme .. '"'
local content = string.gsub(data, find, replace)