From 369233a758e7f3e1c5f82161498bf8066694553f Mon Sep 17 00:00:00 2001 From: ray-x Date: Sun, 22 Aug 2021 21:19:40 +1000 Subject: [PATCH] change print info to log. codelens is not supported by lots of lsp --- lua/navigator/lspwrapper.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/navigator/lspwrapper.lua b/lua/navigator/lspwrapper.lua index a7a3e6b..2751733 100644 --- a/lua/navigator/lspwrapper.lua +++ b/lua/navigator/lspwrapper.lua @@ -132,7 +132,7 @@ function M.check_capabilities(feature, client_id) if #clients == 0 then print("LSP: no client attached") else - print("LSP: server does not support " .. feature) + log("LSP: server does not support " .. feature) end return false end