summaryrefslogtreecommitdiffstats
path: root/Action.c
diff options
context:
space:
mode:
authorryenus <ryenus@gmail.com>2020-10-08 00:36:20 +0800
committerryenus <ryenus@gmail.com>2020-10-09 09:03:32 +0800
commit32a2caa692ee2e2b26d77d00b60166fba87667fb (patch)
tree95a8db3eba7a84328c6ac1791c5bf9e31a5c198a /Action.c
parent4a78f4bb928a4fd6b7b0c003ebdea279cf0d319f (diff)
use 'w' for command wrapping as 'M' is already used
since 'M' is already used for sort-by-memory, as with: keys['M'] = actionSortByMemory; reorder help info about shortcut keys
Diffstat (limited to 'Action.c')
-rw-r--r--Action.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Action.c b/Action.c
index 106fbb03..4ea6fdfb 100644
--- a/Action.c
+++ b/Action.c
@@ -423,8 +423,8 @@ static const struct { const char* key; const char* info; } helpRight[] = {
{ .key = " e: ", .info = "show process environment" },
{ .key = " i: ", .info = "set IO priority" },
{ .key = " l: ", .info = "list open files with lsof" },
- { .key = " M: ", .info = "show process command in multiple lines" },
{ .key = " s: ", .info = "trace syscalls with strace" },
+ { .key = " w: ", .info = "wrap process command in multiple lines" },
{ .key = " F2 C S: ", .info = "setup" },
{ .key = " F1 h: ", .info = "show this help screen" },
{ .key = " F10 q: ", .info = "quit" },
@@ -595,5 +595,5 @@ void Action_setBindings(Htop_Action* keys) {
keys['U'] = actionUntagAll;
keys['c'] = actionTagAllChildren;
keys['e'] = actionShowEnvScreen;
- keys['M'] = actionShowCommandScreen;
+ keys['w'] = actionShowCommandScreen;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy