From 338a2d70baf1cc87a7bf4c265241e05bc6092314 Mon Sep 17 00:00:00 2001 From: Wang Zhuochun Date: Fri, 12 Sep 2014 02:25:15 +0800 Subject: [PATCH] swap default shortcuts to match with vim --- extension/packages/commands.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/packages/commands.coffee b/extension/packages/commands.coffee index a045124..6ccf5d8 100644 --- a/extension/packages/commands.coffee +++ b/extension/packages/commands.coffee @@ -366,8 +366,8 @@ commands = [ 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', 'home', command_home, ['g,h']) - new Command('tabs', 'tab_first', command_tab_first, ['g,H', 'g,^']) - new Command('tabs', 'tab_first_non_pinned', command_tab_first_non_pinned, ['g,0']) + new Command('tabs', 'tab_first', command_tab_first, ['g,H', 'g,0']) + new Command('tabs', 'tab_first_non_pinned', command_tab_first_non_pinned, ['g,^']) new Command('tabs', 'tab_last', command_tab_last, ['g,L', 'g,$']) new Command('tabs', 'close_tab', command_close_tab, ['x']) new Command('tabs', 'restore_tab', command_restore_tab, ['X']) -- 2.39.3