chore: fix lint

This commit is contained in:
Chen Asraf
2023-05-15 02:51:00 +03:00
parent 4e3b5418a8
commit 7ccc0e1e3d

View File

@@ -155,10 +155,5 @@ vim.cmd("amenu Transforms.&dot\\.case :lua ReplaceCurrentWord(DotCase)<CR>")
vim.cmd("amenu Transforms.&Title\\ Case :lua ReplaceCurrentWord(TitleCase)<CR>")
for kmap in _G.TextTransform.config.keymap do
vim.keymap.set(
{ "n", "v" },
kmap,
"<cmd>popup Transforms<CR>",
{ silent = true }
)
vim.keymap.set({ "n", "v" }, kmap, "<cmd>popup Transforms<CR>", { silent = true })
end