From b280d57db9845359186bfb5167e1559b6184f8d5 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Mon, 22 Jan 2024 22:07:14 +0100 Subject: refactor: rewrite ruby provider in lua --- runtime/lua/vim/provider/python.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua/vim/provider/python.lua') diff --git a/runtime/lua/vim/provider/python.lua b/runtime/lua/vim/provider/python.lua index 94872437db..8322131238 100644 --- a/runtime/lua/vim/provider/python.lua +++ b/runtime/lua/vim/provider/python.lua @@ -132,7 +132,7 @@ function M.call(method, args) local ok, result = pcall(vim.fn['remote#host#Require'], 'legacy-python3-provider') ---@type any, any if not ok then s_err = result - vim.api.nvim_echo({ result, 'WarningMsg' }, true, {}) + vim.api.nvim_echo({ { result, 'WarningMsg' } }, true, {}) return end s_host = result -- cgit