@@ -346,6 +346,10 @@ const Commands = {
346
346
"removeTab" ,
347
347
"restoreTab" ,
348
348
"moveTabToNewWindow" ,
349
+ "mergeTabToExistingWindowOnLeft" ,
350
+ "mergeTabToExistingWindowOnRight" ,
351
+ "mergeTabToExistingWindowAbove" ,
352
+ "mergeTabToExistingWindowBelow" ,
349
353
"closeTabsOnLeft" ,
350
354
"closeTabsOnRight" ,
351
355
"closeOtherTabs" ,
@@ -366,6 +370,10 @@ const Commands = {
366
370
"scrollToLeft" ,
367
371
"scrollToRight" ,
368
372
"moveTabToNewWindow" ,
373
+ "mergeTabToExistingWindowOnLeft" ,
374
+ "mergeTabToExistingWindowOnRight" ,
375
+ "mergeTabToExistingWindowAbove" ,
376
+ "mergeTabToExistingWindowBelow" ,
369
377
"goUp" ,
370
378
"goToRoot" ,
371
379
"LinkHints.activateModeWithQueue" ,
@@ -459,6 +467,10 @@ const defaultKeyMappings = {
459
467
"g0" : "firstTab" ,
460
468
"g$" : "lastTab" ,
461
469
"W" : "moveTabToNewWindow" ,
470
+ "wh" : "mergeTabToExistingWindowOnLeft" ,
471
+ "wl" : "mergeTabToExistingWindowOnRight" ,
472
+ "wk" : "mergeTabToExistingWindowAbove" ,
473
+ "wj" : "mergeTabToExistingWindowBelow" ,
462
474
"t" : "createTab" ,
463
475
"yt" : "duplicateTab" ,
464
476
"x" : "removeTab" ,
@@ -552,6 +564,12 @@ const commandDescriptions = {
552
564
restoreTab : [ "Restore closed tab" , { background : true , repeatLimit : 20 } ] ,
553
565
554
566
moveTabToNewWindow : [ "Move tab to new window" , { background : true } ] ,
567
+
568
+ mergeTabToExistingWindowOnLeft : [ "Move tab to an existing window on left, if exists" , { background : true } ] ,
569
+ mergeTabToExistingWindowOnRight : [ "Move tab to an existing window on right, if exists" , { background : true } ] ,
570
+ mergeTabToExistingWindowAbove : [ "Move tab to an existing window above, if exists" , { background : true } ] ,
571
+ mergeTabToExistingWindowBelow : [ "Move tab to an existing window below, if exists" , { background : true } ] ,
572
+
555
573
togglePinTab : [ "Pin or unpin current tab" , { background : true } ] ,
556
574
toggleMuteTab : [ "Mute or unmute current tab" , { background : true , noRepeat : true } ] ,
557
575
0 commit comments