From cb688e5ce7f9e15392df1fef3c9e6354a66b4961 Mon Sep 17 00:00:00 2001 From: Joshua Molloy Date: Thu, 6 Mar 2025 17:27:22 +0000 Subject: [PATCH] refactor: removed floating terminal keybind in terminal mode --- lua/custom/floating-terminal.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/floating-terminal.lua b/lua/custom/floating-terminal.lua index 53bd004b..ac4990f1 100644 --- a/lua/custom/floating-terminal.lua +++ b/lua/custom/floating-terminal.lua @@ -69,6 +69,6 @@ end -- Custom command for opening and closing floating terminal vim.api.nvim_create_user_command('FloatingTerminal', M.toggle_terminal, {}) -vim.keymap.set({ 'n', 't' }, 'tt', M.toggle_terminal) +vim.keymap.set({ 'n' }, 'tt', M.toggle_terminal) return M