summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/content/usage/widgets/process.md1
-rw-r--r--src/constants.rs3
2 files changed, 1 insertions, 3 deletions
diff --git a/docs/content/usage/widgets/process.md b/docs/content/usage/widgets/process.md
index c5f9c89b..ee21188f 100644
--- a/docs/content/usage/widgets/process.md
+++ b/docs/content/usage/widgets/process.md
@@ -198,7 +198,6 @@ Note that key bindings are generally case-sensitive.
| ------------------------------------- | -------------------------------------------- |
| ++left++ <br/> ++h++ <br/> ++alt+h++ | Moves the cursor left |
| ++right++ <br/> ++l++ <br/> ++alt+l++ | Moves the cursor right |
-| ++tab++ | Toggle between searching by PID or name |
| ++esc++ | Close the search widget (retains the filter) |
| ++ctrl+a++ | Skip to the start of the search query |
| ++ctrl+e++ | Skip to the end of the search query |
diff --git a/src/constants.rs b/src/constants.rs
index 2397e7b1..4464c16f 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -287,9 +287,8 @@ pub const PROCESS_HELP_TEXT: [&str; 15] = [
"click on header Sorts the entries by that column, click again to invert the sort",
];
-pub const SEARCH_HELP_TEXT: [&str; 49] = [
+pub const SEARCH_HELP_TEXT: [&str; 48] = [
"4 - Process search widget",
- "Tab Toggle between searching for PID and name",
"Esc Close the search widget (retains the filter)",
"Ctrl-a Skip to the start of the search query",
"Ctrl-e Skip to the end of the search query",