From 0ac02ca559572a170b3137eb152c46ffb4bb20c2 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Thu, 2 Oct 2014 19:48:04 +0200 Subject: [PATCH] =?utf8?q?Fix=20#308:=20Don=E2=80=99t=20use=20modifiers=20?= =?utf8?q?in=20default=20key=20bindings?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- extension/packages/commands.coffee | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/extension/packages/commands.coffee b/extension/packages/commands.coffee index 006dd51..38ae666 100644 --- a/extension/packages/commands.coffee +++ b/extension/packages/commands.coffee @@ -346,20 +346,20 @@ commands = [ new Command('nav', 'scroll_to_top', command_scroll_to_top , ['g,g']) new Command('nav', 'scroll_to_bottom', command_scroll_to_bottom, ['G']) - new Command('nav', 'scroll_down', command_scroll_down, ['j', 'c-e']) - new Command('nav', 'scroll_up', command_scroll_up, ['k', 'c-y']) + new Command('nav', 'scroll_down', command_scroll_down, ['j']) + new Command('nav', 'scroll_up', command_scroll_up, ['k']) new Command('nav', 'scroll_left', command_scroll_left, ['h']) new Command('nav', 'scroll_right', command_scroll_right , ['l']) new Command('nav', 'scroll_half_page_down', command_scroll_half_page_down, ['d']) new Command('nav', 'scroll_half_page_up', command_scroll_half_page_up, ['u']) - new Command('nav', 'scroll_page_down', command_scroll_page_down, ['c-f']) - new Command('nav', 'scroll_page_up', command_scroll_page_up, ['c-b']) + new Command('nav', 'scroll_page_down', command_scroll_page_down, ['Space']) + new Command('nav', 'scroll_page_up', command_scroll_page_up, ['Shift-Space']) new Command('tabs', 'open_tab', command_open_tab, ['t']) new Command('tabs', 'tab_prev', command_tab_prev, ['J', 'g,T']) new Command('tabs', 'tab_next', command_tab_next, ['K', 'g,t']) - new Command('tabs', 'tab_move_left', command_tab_move_left, ['c-J']) - new Command('tabs', 'tab_move_right', command_tab_move_right, ['c-K']) + new Command('tabs', 'tab_move_left', command_tab_move_left, ['g,J']) + new Command('tabs', 'tab_move_right', command_tab_move_right, ['g,K']) new Command('tabs', 'home', command_home, ['g,h']) new Command('tabs', 'tab_first', command_tab_first, ['g,H', 'g,^']) new Command('tabs', 'tab_last', command_tab_last, ['g,L', 'g,$']) -- 2.39.3