Skip to content

Commit

Permalink
feat: replace esc with q for quitting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmithgh committed Sep 28, 2024
1 parent e689390 commit 14f28fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/kitty-scrollback/keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local function set_global_defaults()
set_default({ 'n' }, '<leader>y', plug.NORMAL_YANK, {})
set_default({ 'n' }, '<leader>yy', plug.YANK_LINE, {})

set_default({ 'n' }, '<esc>', plug.CLOSE_OR_QUIT_ALL, {})
set_default({ 'n' }, 'q', plug.CLOSE_OR_QUIT_ALL, {})
set_default({ 'n', 't', 'i' }, '<c-c>', plug.QUIT_ALL, {})

set_default({ 'v' }, '<c-cr>', plug.EXECUTE_VISUAL_CMD, {})
Expand Down

0 comments on commit 14f28fd

Please sign in to comment.