summaryrefslogtreecommitdiffstats
path: root/src/actioner.rs
diff options
context:
space:
mode:
authorquentin konieczko <konieczko@gmail.com>2022-10-13 14:45:46 +0200
committerquentin konieczko <konieczko@gmail.com>2022-10-13 14:45:46 +0200
commit83bfdb1365c22cdba80ca6556c63d11174326a62 (patch)
tree519b3686879c13486484a5cb7e37328b21fdbb12 /src/actioner.rs
parent86890c19f9d487ecf45e9275417ea0e8356a8dea (diff)
ctrl f for fuzzy finder
Diffstat (limited to 'src/actioner.rs')
-rw-r--r--src/actioner.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actioner.rs b/src/actioner.rs
index f4978cc..c10df5f 100644
--- a/src/actioner.rs
+++ b/src/actioner.rs
@@ -77,7 +77,7 @@ impl Actioner {
Event::Key(Key::WheelDown(_, _, _)) => self.down(tabs),
Event::Key(Key::SingleClick(MouseButton::Left, row, _)) => self.left_click(tabs, row),
Event::Key(Key::SingleClick(MouseButton::Right, row, _)) => self.right_click(tabs, row),
- Event::Key(Key::Ctrl('s')) => self.ctrl_s(tabs),
+ Event::Key(Key::Ctrl('f')) => self.ctrl_s(tabs),
_ => {}
}
}