diff options
Diffstat (limited to 'src/c_defs.go')
-rw-r--r-- | src/c_defs.go | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/c_defs.go b/src/c_defs.go index 5d741ae..18a1805 100644 --- a/src/c_defs.go +++ b/src/c_defs.go @@ -180,12 +180,17 @@ const ( var ( HELP_NORMAL_KEYS = [][2]string{ - {"j | <down>", "Down"}, - {"k | <up>", "Up"}, - {"a | i", "Insert host"}, - {"y", "Copy host"}, - {"d", "Cut host"}, - {"p", "Paste host"}, + {"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"}, + {"<down> | j", "Select next item"}, + {"<up> | k", "Select previous item"}, + {"g", "Go to first item"}, + {"G", "Go to last item"}, } ) |