Remove lua execute function which is no longer needed

This commit is contained in:
Dheepak Krishnamurthy
2020-07-18 01:19:11 -06:00
parent 1bcceaa3a8
commit 8c8698428d

View File

@@ -2,11 +2,6 @@ vim = vim
local api = vim.api
local fn = vim.fn
local function execute(cmd, ...)
cmd = cmd:format(...)
vim.cmd(cmd)
end
local function trim(str)
return str:gsub("^%s+", ""):gsub("%s+$", "")
end