From da6e717f2c250e62d5f9f80ddbebbf7211dd91ac Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Sun, 2 Apr 2023 18:02:21 +0800 Subject: [PATCH] feat: use a non-invasive keymap define method --- lua/Trans/core/conf.lua | 12 +++++++----- lua/Trans/frontend/hover/init.lua | 9 +++++++-- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/lua/Trans/core/conf.lua b/lua/Trans/core/conf.lua index dd0d941..efa96d4 100644 --- a/lua/Trans/core/conf.lua +++ b/lua/Trans/core/conf.lua @@ -51,11 +51,13 @@ return { split_width = 60, padding = 10, -- padding for hover window width keymaps = { - pageup = '[[', - pagedown = ']]', - pin = '[', - close = ']', - toggle_entry = ';', + -- pageup = '', + -- pagedown = '', + -- pin = '[', + -- close = ']', + -- toggle_entry = ';', + + -- play = '_', -- Deprecated }, ---@type string[] auto close events diff --git a/lua/Trans/frontend/hover/init.lua b/lua/Trans/frontend/hover/init.lua index 4a048e7..25b154a 100644 --- a/lua/Trans/frontend/hover/init.lua +++ b/lua/Trans/frontend/hover/init.lua @@ -18,13 +18,18 @@ local M = Trans.metatable('frontend.hover', { M.__index = M +---Set up function which will be invoked when this module is loaded function M.setup() local set = vim.keymap.set for action, key in pairs(M.opts.keymaps) do set('n', key, function() local instance = M.get_active_instance() - return instance and coroutine.wrap(instance.execute)(instance, action) or key - -- TODO : Fix remap + if instance then + coroutine.wrap(instance.execute)(instance, action) + + else + vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, true, true), 'n', false) + end end) end end