]> granicus.if.org Git - procps-ng/commitdiff
top: trade just 1 'Ctrl' bottom window key association <=== port of newlib 9ff5a4ff
authorJim Warner <james.warner@comcast.net>
Wed, 15 Jun 2022 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@dropbear.xyz>
Sun, 19 Jun 2022 10:58:51 +0000 (20:58 +1000)
______________________________ original newlib message

I grew tired of inadvertently causing a premature exit
from top when all I wanted was to review some process'
environment variables. That 'V' key was just too close
to the 'C' key so the '^V' attempt became one of '^C'.

Well, not any more. Should a user wish to see a task's
environment, it will now require the '^N' combination.

[ it also now places G/U & N/K on a similar diagonal ]

Along the way, lower case Ctrl key combinations on the
help screen were all changed into upper case versions.

Signed-off-by: Jim Warner <james.warner@comcast.net>
top/top.c
top/top.h
top/top_nls.c

index b7a710a2b087d2f88abf2104d30cf6d2fc5e5767..e85d020b9985f04d347a239f0910d250fbd67776 100644 (file)
--- a/top/top.c
+++ b/top/top.c
@@ -5523,27 +5523,27 @@ static void keys_global (int ch) {
             Tagged_func = wins_tag_cmdline;
          }
          break;
-      case kbd_CtrlU:
+      case kbd_CtrlN:
          def = w->ppt[w->begtask]->tid;
          // if already targeted, assume user wants to turn it off ...
-         if (Tagged_task && Tagged_lflg == (L_SUPGRP)) {
+         if (Tagged_task && Tagged_lflg == (L_ENVIRON)) {
             TAGGED_TOSS;
          } else {
             Tagged_task = def;
-            Tagged_lflg = L_SUPGRP;
-            Tagged_name = "supplementary groups";
+            Tagged_lflg = L_ENVIRON;
+            Tagged_name = "environment";
             Tagged_func = wins_tag_generic;
          }
          break;
-      case kbd_CtrlV:
+      case kbd_CtrlU:
          def = w->ppt[w->begtask]->tid;
          // if already targeted, assume user wants to turn it off ...
-         if (Tagged_task && Tagged_lflg == (L_ENVIRON)) {
+         if (Tagged_task && Tagged_lflg == (L_SUPGRP)) {
             TAGGED_TOSS;
          } else {
             Tagged_task = def;
-            Tagged_lflg = L_ENVIRON;
-            Tagged_name = "environment";
+            Tagged_lflg = L_SUPGRP;
+            Tagged_name = "supplementary groups";
             Tagged_func = wins_tag_generic;
          }
          break;
@@ -6360,7 +6360,7 @@ static void do_key (int ch) {
       { keys_global,
          { '?', 'B', 'd', 'E', 'e', 'f', 'g', 'H', 'h'
          , 'I', 'k', 'r', 's', 'X', 'Y', 'Z', '0'
-         , kbd_CtrlE, kbd_CtrlG, kbd_CtrlK, kbd_CtrlU, kbd_CtrlV
+         , kbd_CtrlE, kbd_CtrlG, kbd_CtrlK, kbd_CtrlN, kbd_CtrlU
          , kbd_ENTER, kbd_SPACE, '\0' } },
       { keys_summary,
          { '!', '1', '2', '3', '4', 'C', 'l', 'm', 't', '\0' } },
index 482e4367af023320b4efe89cd35396694963361c..3de0822d7b6ebf978b295a09f64fe6b19974a849 100644 (file)
--- a/top/top.h
+++ b/top/top.h
@@ -185,9 +185,9 @@ char *strcasestr(const char *haystack, const char *needle);
 #define kbd_CtrlE  '\005'
 #define kbd_CtrlG  '\007'
 #define kbd_CtrlK  '\013'
+#define kbd_CtrlN  '\016'
 #define kbd_CtrlO  '\017'
 #define kbd_CtrlU  '\025'
-#define kbd_CtrlV  '\026'
 
         /* Special value in Pseudo_row to force an additional procs refresh
            -- used at startup and for task/thread mode transitions */
index 2d07b70ace5057bf7ff1526b99990a4c69b3d44b..b835878d20ee7add87e73affc7413c5702b0200e 100644 (file)
@@ -590,8 +590,8 @@ static void build_uniq_nlstab (void) {
       "  V,v,F   . Toggle: '~1V~2' forest view; '~1v~2' hide/show children; '~1F~2' keep focused\n"
       "\n"
       "%s"
-      "  ^G,K,U,V  View: ctl groups ~1^g~2; cmdline ~1^k~2; supp groups ~1^u~2; environment ~1^v~2\n"
-      "  W,Y,!,^E  Write cfg '~1W~2'; Inspect '~1Y~2'; Combine Cpus '~1!~2'; Scale time ~1^e~2'\n"
+      "  ^G,K,N,U  View: ctl groups ~1^G~2; cmdline ~1^K~2; environment ~1^N~2; supp groups ~1^U~2\n"
+      "  W,Y,!,^E  Write cfg '~1W~2'; Inspect '~1Y~2'; Combine Cpus '~1!~2'; Scale time ~1^E~2'\n"
       "  q         Quit\n"
       "          ( commands shown with '.' require a ~1visible~2 task display ~1window~2 ) \n"
       "Press '~1h~2' or '~1?~2' for help with ~1Windows~2,\n"