@@ -106,105 +106,109 @@ impl HelpPane {
106106 }
107107 } ;
108108
109- title ( "Keys for pane control" ) ;
109+ title ( "Pane control" ) ;
110110 {
111111 hotkey (
112112 "q/<Esc>" ,
113- "Close the current pane. Closes the program if no " ,
114- Some ( "pane is open" ) ,
113+ "Close the current pane." ,
114+ Some ( "Closes the program if no pane is open. " ) ,
115115 ) ;
116116 hotkey (
117117 "<Tab>" ,
118118 "Cycle between all open panes." ,
119119 Some ( "Activate 'Marked Items' pane to delete selected files." ) ,
120120 ) ;
121- hotkey ( "?" , "Show or hide the help pane " , None ) ;
121+ hotkey ( "?" , "Show or hide the help. " , None ) ;
122122 spacer ( ) ;
123123 }
124- title ( "Keys for Navigation" ) ;
124+ title ( "Navigation" ) ;
125125 {
126- hotkey ( "j/<Down>" , "move down an entry " , None ) ;
127- hotkey ( "k/<Up>" , "move up an entry " , None ) ;
128- hotkey ( "o/l/<Enter>" , "descent into the selected directory" , None ) ;
126+ hotkey ( "j/<Down>" , "Move down. " , None ) ;
127+ hotkey ( "k/<Up>" , "Move up. " , None ) ;
128+ hotkey ( "o/l/<Enter>" , "Descent into the selected directory. " , None ) ;
129129 hotkey ( "<Right>" , "^" , None ) ;
130130 hotkey (
131131 "u/h/<Left>" ,
132- "ascent one level into the parent directory" ,
132+ "Ascent one level into the parent directory. " ,
133133 None ,
134134 ) ;
135135 hotkey ( "<Backspace>" , "^" , None ) ;
136- hotkey ( "Ctrl + d" , "move down 10 entries at once " , None ) ;
136+ hotkey ( "Ctrl + d" , "Move down 10 items. " , None ) ;
137137 hotkey ( "<Page Down>" , "^" , None ) ;
138- hotkey ( "Ctrl + u" , "move up 10 entries at once " , None ) ;
138+ hotkey ( "Ctrl + u" , "Move up 10 items. " , None ) ;
139139 hotkey ( "<Page Up>" , "^" , None ) ;
140- hotkey ( "H/<Home>" , "Move to the top of the entries list" , None ) ;
141- hotkey ( "G/<End>" , "Move to the bottom of the entries list" , None ) ;
140+ hotkey ( "H/<Home>" , "Move to the top of the list. " , None ) ;
141+ hotkey ( "G/<End>" , "Move to the bottom of the list. " , None ) ;
142142 spacer ( ) ;
143143 }
144- title ( "Keys for display " ) ;
144+ title ( "Display " ) ;
145145 {
146- hotkey ( "s" , "toggle sort by size ascending/descending" , None ) ;
147- hotkey ( "m" , "toggle sort by mtime ascending/descending" , None ) ;
148- hotkey ( "c" , "toggle sort by items ascending/descending" , None ) ;
146+ hotkey ( "s" , "Toggle sort by size descending/ascending." , None ) ;
147+ hotkey (
148+ "m" ,
149+ "Toggle sort by modified time descending/ascending." ,
150+ None ,
151+ ) ;
152+ hotkey ( "c" , "Toggle sort by items descending/ascending." , None ) ;
149153 hotkey (
150154 "g" ,
151- "cycle through percentage display and bar options" ,
155+ "Cycle through percentage display and bar options. " ,
152156 None ,
153157 ) ;
154158 spacer ( ) ;
155159 }
156- title ( "Keys for entry operations " ) ;
160+ title ( "Open/Mark/Search " ) ;
157161 {
158162 hotkey (
159163 "Shift + o" ,
160- "Open the entry with the associated program" ,
164+ "Open the item with the associated program. " ,
161165 None ,
162166 ) ;
163167 hotkey (
164168 "d" ,
165- "Toggle the currently selected entry and move down" ,
169+ "Toggle the currently selected item and move down. " ,
166170 None ,
167171 ) ;
168172 hotkey (
169173 "x" ,
170- "Mark the currently selected entry for deletion and move down" ,
174+ "Mark the currently selected item for deletion and move down. " ,
171175 None ,
172176 ) ;
173- hotkey ( "<Space>" , "Toggle the currently selected entry " , None ) ;
174- hotkey ( "a" , "Toggle all entries " , None ) ;
177+ hotkey ( "<Space>" , "Toggle the currently selected item. " , None ) ;
178+ hotkey ( "a" , "Toggle all items. " , None ) ;
175179 hotkey (
176180 "/" ,
177- "Git-style glob search, case-insensitive, always from the top of the tree " ,
178- None ,
181+ "Git-style glob search, case-insensitive. " ,
182+ Some ( "Search starts from the current directory." ) ,
179183 ) ;
180184 spacer ( ) ;
181185 }
182- title ( "Keys in the Mark pane" ) ;
186+ title ( "Mark items pane" ) ;
183187 {
184188 hotkey (
185189 "x/d/<Space>" ,
186- "Remove the selected entry from the list" ,
190+ "Remove the selected item from the list. " ,
187191 None ,
188192 ) ;
189- hotkey ( "a" , "Remove all entries from the list" , None ) ;
193+ hotkey ( "a" , "Remove all items from the list. " , None ) ;
190194 hotkey (
191195 "Ctrl + r" ,
192- "Permanently delete all marked entries without prompt! " ,
196+ "Permanently delete all marked items without prompt. " ,
193197 Some ( "This operation cannot be undone!" ) ,
194198 ) ;
195199 #[ cfg( feature = "trash-move" ) ]
196200 hotkey (
197201 "Ctrl + t" ,
198- "Move all marked entries to the trash bin" ,
199- Some ( "The entries can be restored from the trash bin" ) ,
202+ "Move all marked items to the trash bin. " ,
203+ Some ( "The items can be restored from the trash bin. " ) ,
200204 ) ;
201205 spacer ( ) ;
202206 }
203- title ( "Keys for application control" ) ;
207+ title ( "Application control" ) ;
204208 {
205209 hotkey (
206210 "Ctrl + c" ,
207- "close the application. No questions asked!" ,
211+ "Close the application. No questions asked!" ,
208212 None ,
209213 ) ;
210214 spacer ( ) ;
0 commit comments