OSDN Git Service

Help text update from Isaac Dunham, tweaked slightly.
authorRob Landley <rob@landley.net>
Fri, 19 Feb 2016 17:58:17 +0000 (11:58 -0600)
committerRob Landley <rob@landley.net>
Fri, 19 Feb 2016 17:58:17 +0000 (11:58 -0600)
toys/other/hexedit.c

index ff13b51..a9d97aa 100644 (file)
@@ -12,9 +12,16 @@ config HEXEDIT
   help
     usage: hexedit FILENAME
 
-    Hexadecimal file editor.
+    Hexadecimal file editor. All changes are written to disk immediately.
 
     -r Read only (display but don't edit)
+
+    Keys:
+    Arrows        Move left/right/up/down by one line/column
+    Pg Up/Pg Dn   Move up/down by one page
+    0-9, a-f      Change current half-byte to hexadecimal value
+    u             Undo
+    q/^c/^d/<esc> Quit
 */
 
 #define FOR_hexedit