File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,8 @@ impl App {
129
129
self . toggle_tabs ( false ) ?;
130
130
NeedsUpdate :: COMMANDS
131
131
}
132
- keys:: TAB_TOGGLE_REVERSE => {
132
+ keys:: TAB_TOGGLE_REVERSE
133
+ | keys:: TAB_TOGGLE_REVERSE_WINDOWS => {
133
134
self . toggle_tabs ( true ) ?;
134
135
NeedsUpdate :: COMMANDS
135
136
}
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ pub const TAB_3: KeyEvent = no_mod(KeyCode::Char('3'));
20
20
pub const TAB_4 : KeyEvent = no_mod ( KeyCode :: Char ( '4' ) ) ;
21
21
pub const TAB_TOGGLE : KeyEvent = no_mod ( KeyCode :: Tab ) ;
22
22
pub const TAB_TOGGLE_REVERSE : KeyEvent = no_mod ( KeyCode :: BackTab ) ;
23
+ pub const TAB_TOGGLE_REVERSE_WINDOWS : KeyEvent =
24
+ with_mod ( KeyCode :: BackTab , KeyModifiers :: SHIFT ) ;
23
25
pub const FOCUS_WORKDIR : KeyEvent = no_mod ( KeyCode :: Char ( 'w' ) ) ;
24
26
pub const FOCUS_STAGE : KeyEvent = no_mod ( KeyCode :: Char ( 's' ) ) ;
25
27
pub const FOCUS_RIGHT : KeyEvent = no_mod ( KeyCode :: Right ) ;
You can’t perform that action at this time.
0 commit comments