File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,14 @@ export default (
50
50
submenu : [
51
51
{
52
52
label : 'New Tab' ,
53
+ accelerator : commandKeys [ `tab:new:${ profile } ` ] ,
53
54
click ( item , focusedWindow ) {
54
55
execCommand ( `tab:new:${ profile } ` , focusedWindow ) ;
55
56
}
56
57
} ,
57
58
{
58
59
label : 'New Window' ,
60
+ accelerator : commandKeys [ `window:new:${ profile } ` ] ,
59
61
click ( item , focusedWindow ) {
60
62
execCommand ( `window:new:${ profile } ` , focusedWindow ) ;
61
63
}
@@ -65,12 +67,14 @@ export default (
65
67
} ,
66
68
{
67
69
label : 'Split Down' ,
70
+ accelerator : commandKeys [ `pane:splitDown:${ profile } ` ] ,
68
71
click ( item , focusedWindow ) {
69
72
execCommand ( `pane:splitDown:${ profile } ` , focusedWindow ) ;
70
73
}
71
74
} ,
72
75
{
73
76
label : 'Split Right' ,
77
+ accelerator : commandKeys [ `pane:splitRight:${ profile } ` ] ,
74
78
click ( item , focusedWindow ) {
75
79
execCommand ( `pane:splitRight:${ profile } ` , focusedWindow ) ;
76
80
}
You can’t perform that action at this time.
0 commit comments