delete open_terminal util function

This commit is contained in:
2022-03-10 11:26:10 +03:00
parent 266db7be43
commit 538a35fe74
2 changed files with 2 additions and 12 deletions

View File

@@ -114,16 +114,6 @@ M.copy_diagnostic_message = function()
print("Diagnostic message was yanked")
end
M.open_terminal = function(vertically)
vertically = vertically or false
if vertically then
vim.cmd(":vs | :term")
else
vim.cmd(":split | :term")
end
end
M.get_definitions = function()
local params = vim.lsp.util.make_position_params()