cleanup: Remove debugging commands

Not really used anymore
This commit is contained in:
simrat39
2021-08-22 16:42:35 -07:00
parent 2932c11e92
commit e7b5fb7d2c

View File

@@ -1,22 +0,0 @@
local vim = vim
local D = {}
-- needs plenary
local reload = require('plenary.reload').reload_module
function D.R(name)
reload(name)
return require(name)
end
function D.setup_commands()
vim.cmd("command! " .. "DSymbolsOutline " ..
":lua require'symbols-outline.debug'.R('symbols-outline').toggle_outline()")
vim.cmd("command! " .. "DSymbolsOutlineOpen " ..
":lua require'symbols-outline.debug'.R('symbols-outline').open_outline()")
vim.cmd("command! " .. "DSymbolsOutlineClose " ..
":lua require'symbols-outline.debug'.R('symbols-outline').close_outline()")
end
return D