summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-08-25 01:12:57 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-08-25 01:12:57 -0400
commit93cf53e5d7c5dc8614e7011514af8334dba7617f (patch)
treee29bdc2cabede9959af6c56ee375614359be644c
parentc41b972081eb9db69f63158f7938d2b77e265498 (diff)
docs: Clarify description
-rw-r--r--README.md26
-rw-r--r--src/constants.rs2
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",