summaryrefslogtreecommitdiffstats
path: root/src/keybind.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2020-05-22 14:32:56 +0200
committerrabite <rabite@posteo.de>2020-05-22 14:32:56 +0200
commit67fde00a341b3c90afcad2414aaf19f2b0a0cbf1 (patch)
tree981e08fc6cf7341c43426384ec1ab07627c20f9e /src/keybind.rs
parentf434936e622e4cd03551a7ca09db82cb2205d9a9 (diff)
add preview zoom mode
Diffstat (limited to 'src/keybind.rs')
-rw-r--r--src/keybind.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/keybind.rs b/src/keybind.rs
index e9e0e22..64a725a 100644
--- a/src/keybind.rs
+++ b/src/keybind.rs
@@ -481,6 +481,7 @@ pub enum FileBrowserAction {
ShowQuickActions,
RunSubshell,
ToggleColumns,
+ ZoomPreview,
ExecCmd
}
@@ -686,6 +687,7 @@ impl Default for Bindings<FileBrowserAction> {
ShowQuickActions => Char('a'),
RunSubshell => Char('z'),
ToggleColumns => Char('c'),
+ ZoomPreview => Char('C'),
ExecCmd => Char('!')
};