summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/app.rs6
-rw-r--r--src/constants.rs2
-rw-r--r--src/lib.rs1
3 files changed, 5 insertions, 4 deletions
diff --git a/src/app.rs b/src/app.rs
index 3de4939b..822d4a1d 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -805,7 +805,7 @@ impl App {
self.proc_state.force_update = Some(self.current_widget.widget_id - 1);
}
} else {
- self.start_dd()
+ self.start_killing_process()
}
}
}
@@ -1303,7 +1303,7 @@ impl App {
}
}
- pub fn start_dd(&mut self) {
+ pub fn start_killing_process(&mut self) {
self.reset_multi_tap_keys();
if let Some(proc_widget_state) = self
@@ -1482,7 +1482,7 @@ impl App {
self.awaiting_second_char = false;
self.second_char = None;
- self.start_dd();
+ self.start_killing_process();
}
}
diff --git a/src/constants.rs b/src/constants.rs
index f85904bb..c810ccb9 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -271,7 +271,7 @@ pub const CPU_HELP_TEXT: [&str; 2] = [
pub const PROCESS_HELP_TEXT: [&str; 15] = [
"3 - Process widget",
- "dd Kill the selected process",
+ "dd, F9 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",
diff --git a/src/lib.rs b/src/lib.rs
index eda55bb6..835af242 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -124,6 +124,7 @@ pub fn handle_key_event_or_break(
KeyCode::F(3) => app.toggle_search_regex(),
KeyCode::F(5) => app.toggle_tree_mode(),
KeyCode::F(6) => app.toggle_sort(),
+ KeyCode::F(9) => app.start_killing_process(),
_ => {}
}
} else {