diff options
author | Joe <rbo@gmx.us> | 2024-05-13 20:20:20 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-05-13 20:20:20 +0200 |
commit | 85c5875689e91a8c7888f11217b9fe94e2d9fa71 (patch) | |
tree | ac82cb7fad3b822772c1625974e2268a03c6f48f /src/c_defs.go | |
parent | qwe (diff) | |
download | hardflip-85c5875689e91a8c7888f11217b9fe94e2d9fa71.tar.gz hardflip-85c5875689e91a8c7888f11217b9fe94e2d9fa71.tar.bz2 hardflip-85c5875689e91a8c7888f11217b9fe94e2d9fa71.tar.xz hardflip-85c5875689e91a8c7888f11217b9fe94e2d9fa71.tar.zst hardflip-85c5875689e91a8c7888f11217b9fe94e2d9fa71.zip |
go
Diffstat (limited to '')
-rw-r--r-- | src/c_defs.go | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/src/c_defs.go b/src/c_defs.go index 22f169d..5191c6d 100644 --- a/src/c_defs.go +++ b/src/c_defs.go @@ -43,7 +43,7 @@ * POSSIBILITY OF SUCH DAMAGE. * * hardflip: src/c_defs.go - * Wed Apr 24 15:11:37 2024 + * Mon May 13 10:27:54 2024 * Joe * * constants @@ -180,18 +180,28 @@ const ( var ( HELP_NORMAL_KEYS = [][2]string{ - {"<down> | j", "Select next item"}, - {"<up> | k", "Select previous item"}, - {"[Enter]", "Connect to selected host / toggle directory"}, - {"a | i", "Create a new host"}, - {"y", "Copy selected host"}, - {"d", "Cut selected host"}, - {"p", "Paste host in clipboard"}, - {"m", "Create a new directory"}, - {"e", "Edit selected host"}, - {"c", "Rename selected item"}, - {"g", "Go to first item"}, - {"G", "Go to last item"}, + {"<down> | j", "Go to next item"}, + {"<up> | k", "Go to previous item"}, + {"<pgdown> | <c-d>", "Jump down"}, + {"<pgup> | <c-u>", "Jump up"}, + {"} | ]", "Go to next directory"}, + {"{ | [", "Go to previous directory"}, + {"g", "Go to first item"}, + {"G", "Go to last item"}, + {"D", "Delete selected item"}, + {"h", "Close current directory"}, + {"H", "Close all directories"}, + {"l | <space>", "Toggle directory"}, + {"l | <enter>", "Connect to selected host / toggle directory"}, + {"a | i", "Create a new host"}, + {"y", "Copy selected host"}, + {"d", "Cut selected host"}, + {"p", "Paste host in clipboard"}, + {"<f7> | m", "Create a new directory"}, + {"e", "Edit selected host"}, + {"c | C | A", "Rename selected item"}, + {"?", "Display this help menu"}, + {"<c-c> | q", "Quit"}, } ) |