From 4590c8b423f4f64b2fab8389938e33e791c83f82 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Thu, 7 Mar 2024 14:17:22 +0100 Subject: [PATCH] simple exit terminal description --- lua/keymaps.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lua/keymaps.lua b/lua/keymaps.lua index 9561d21..069771f 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -12,11 +12,6 @@ vim.keymap.set('n', 'e', vim.diagnostic.open_float, { desc = 'Show diagn vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) -- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier --- for people to discover. Otherwise, you normally need to press , which --- is not what someone will guess without a bit more experience. --- --- NOTE: This won't work in all terminal emulators/tmux/etc. Try your own mapping --- or just use to exit terminal mode vim.keymap.set('t', '', '', { desc = 'Exit terminal mode' }) -- Disable arrow keys in normal mode