From 93cf53e5d7c5dc8614e7011514af8334dba7617f Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Tue, 25 Aug 2020 01:12:57 -0400 Subject: [PATCH] docs: Clarify description --- README.md | 26 +++++++++++++------------- src/constants.rs | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 3c805792..3e90d782 100644 --- a/README.md +++ b/README.md @@ -213,19 +213,19 @@ Run using `btm`. #### Process bindings -| | | -| ------------- | ------------------------------------------------------------- | -| `dd` | Kill the selected process | -| `c` | Sort by CPU usage, press again to reverse sorting order | -| `m` | Sort by memory usage, press again to reverse sorting order | -| `p` | Sort by PID name, press again to reverse sorting order | -| `n` | Sort by process name, press again to reverse sorting order | -| `Tab` | Group/un-group processes with the same name | -| `Ctrl-f`, `/` | Open process search widget | -| `P` | Toggle between showing the full path or just the process name | -| `s, F6` | Open process sort widget | -| `I` | Invert current sort | -| `%` | Toggle between values and percentages for memory usage | +| | | +| ------------- | ---------------------------------------------------------------- | +| `dd` | Kill the selected process | +| `c` | Sort by CPU usage, press again to reverse sorting order | +| `m` | Sort by memory usage, press again to reverse sorting order | +| `p` | Sort by PID name, press again to reverse sorting order | +| `n` | Sort by process name, press again to reverse sorting order | +| `Tab` | Group/un-group processes with the same name | +| `Ctrl-f`, `/` | Open process search widget | +| `P` | Toggle between showing the full command or just the process name | +| `s, F6` | Open process sort widget | +| `I` | Invert current sort | +| `%` | Toggle between values and percentages for memory usage | #### Process search bindings diff --git a/src/constants.rs b/src/constants.rs index c2e03d97..d1772413 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -101,7 +101,7 @@ pub const PROCESS_HELP_TEXT: [&str; 12] = [ "n Sort by process name, press again to reverse sorting order\n", "Tab Group/un-group processes with the same name\n", "Ctrl-f, / Open process search widget\n", - "P Toggle between showing the full path or just the process name\n", + "P Toggle between showing the full command or just the process name\n", "s, F6 Open process sort widget\n", "I Invert current sort\n", "% Toggle between values and percentages for memory usage",