commit d4e44c8a5e272e941505a39aca5b778f03ddef14
parent e5cd5a9306e9782480b44d5a5b9140bfa70e1f1a
Author: Tomas Nemec <nemi@skaut.cz>
Date: Thu, 9 Sep 2021 11:58:03 +0200
update
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lua/tms/lsp/init.lua b/lua/tms/lsp/init.lua
@@ -12,7 +12,7 @@ local function keybind(bufnr)
local h = '<cmd>lua require("tms.lsp.handlers")'
kb.bnnoremap(bufnr, 'gd', t .. '.b.lsp_definitions()<cr>', o)
kb.bnnoremap(bufnr, 'gD', '<cmd>vsplit | lua vim.lsp.buf.definition()<cr>', o)
- kb.bnnoremap(bufnr, 'gi', l .. 'buf.implementation()<cr>', o)
+ kb.bnnoremap(bufnr, 'gi', l .. '.buf.implementation()<cr>', o)
-- telescope fallback (subject to remove)
kb.bnnoremap(bufnr, 'gI', t .. 'b.lsp_implementations()<cr>', o)
kb.bnnoremap(bufnr, 'K', l .. '.buf.hover()<cr>', o)