@@ -120,7 +120,7 @@ pub fn draw_shortcuts(state: &AppState, frame: &mut Frame, area: Rect) {
120
120
hints. push ( Shortcut :: new ( vec ! [ "q" , "CTRL-c" ] , "Exit linutil" ) ) ;
121
121
122
122
if state. at_root ( ) {
123
- hints. push ( Shortcut :: new ( vec ! [ "h" , "Left" , "Tab" ] , "Focus tab list" ) ) ;
123
+ hints. push ( Shortcut :: new ( vec ! [ "h" , "Left" ] , "Focus tab list" ) ) ;
124
124
hints. push ( get_list_item_shortcut ( state) ) ;
125
125
} else {
126
126
if state. selected_item_is_up_dir ( ) {
@@ -136,14 +136,14 @@ pub fn draw_shortcuts(state: &AppState, frame: &mut Frame, area: Rect) {
136
136
hints. push ( Shortcut :: new ( vec ! [ "d" ] , "Command Description" ) ) ;
137
137
}
138
138
}
139
- hints. push ( Shortcut :: new ( vec ! [ "Tab" ] , "Focus tab list" ) ) ;
140
139
} ;
141
140
142
141
hints. push ( Shortcut :: new ( vec ! [ "k" , "Up" ] , "Select item above" ) ) ;
143
142
hints. push ( Shortcut :: new ( vec ! [ "j" , "Down" ] , "Select item below" ) ) ;
144
143
hints. push ( Shortcut :: new ( vec ! [ "t" ] , "Next theme" ) ) ;
145
144
hints. push ( Shortcut :: new ( vec ! [ "T" ] , "Previous theme" ) ) ;
146
-
145
+ hints. push ( Shortcut :: new ( vec ! [ "Tab" ] , "Next tab" ) ) ;
146
+ hints. push ( Shortcut :: new ( vec ! [ "Shift-Tab" ] , "Previous tab" ) ) ;
147
147
ShortcutList {
148
148
scope_name : "Item list" ,
149
149
hints,
@@ -154,11 +154,13 @@ pub fn draw_shortcuts(state: &AppState, frame: &mut Frame, area: Rect) {
154
154
scope_name : "Tab list" ,
155
155
hints : vec ! [
156
156
Shortcut :: new( vec![ "q" , "CTRL-c" ] , "Exit linutil" ) ,
157
- Shortcut :: new( vec![ "l" , "Right" , "Tab" , " Enter"] , "Focus action list" ) ,
157
+ Shortcut :: new( vec![ "l" , "Right" , "Enter" ] , "Focus action list" ) ,
158
158
Shortcut :: new( vec![ "k" , "Up" ] , "Select item above" ) ,
159
159
Shortcut :: new( vec![ "j" , "Down" ] , "Select item below" ) ,
160
160
Shortcut :: new( vec![ "t" ] , "Next theme" ) ,
161
161
Shortcut :: new( vec![ "T" ] , "Previous theme" ) ,
162
+ Shortcut :: new( vec![ "Tab" ] , "Next tab" ) ,
163
+ Shortcut :: new( vec![ "Shift-Tab" ] , "Previous tab" ) ,
162
164
] ,
163
165
} ,
164
166
0 commit comments