aboutsummaryrefslogtreecommitdiffstats
path: root/lua/common_lsp/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/common_lsp/util.lua')
-rw-r--r--lua/common_lsp/util.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/lua/common_lsp/util.lua b/lua/common_lsp/util.lua
index 1aebbfb6..6da2db1c 100644
--- a/lua/common_lsp/util.lua
+++ b/lua/common_lsp/util.lua
@@ -83,9 +83,7 @@ function M.create_module_commands(module_name, commands)
-- The command definition.
table.insert(parts,
string.format("lua require'common_lsp/%s'.commands[%q][1]()", module_name, command_name))
- local command = table.concat(parts, " ")
- print(command)
- api.nvim_command(command)
+ api.nvim_command(table.concat(parts, " "))
end
end