From 3bb94dc1a6094f1306cdaf387973b6712244df6a Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Thu, 23 Nov 2017 22:33:12 +0000 Subject: Require <> around all keys in a bind This is partly for consistency, party to resolve a bug where binding [ in the config file would trick the ini parser into thinking it was reading a section header, leading to the bind not being applied. --- files/imv_config | 56 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'files') diff --git a/files/imv_config b/files/imv_config index 837803c..5a2dafd 100644 --- a/files/imv_config +++ b/files/imv_config @@ -35,42 +35,42 @@ default_binds = false [binds] -Q = quit + = "quit" # Image navigation - = select_rel -1 -[ = select_rel -1 - = select_rel 1 -] = select_rel 1 -GG = select_abs 0 - = select_abs -1 + = "select_rel -1" +<[> = "select_rel -1" + = "select_rel 1" +<]> = "select_rel 1" + = "select_abs 0" + = "select_abs -1" # Panning -J = pan 0 -50 -K = pan 0 50 -H = pan 50 0 -L = pan -50 0 + = "pan 0 -50" + = "pan 0 50" + = "pan 50 0" + = "pan -50 0" -#Zooming - = zoom 1 -I = zoom 1 - = zoom -1 -O = zoom -1 +# Zooming + = "zoom 1" + = "zoom 1" + = "zoom -1" + = "zoom -1" # Other commands -X = remove -F = fullscreen -D = overlay -P = exec echo $imv_path -C = center -S = scaling_mode next -A = zoom actual -R = reset + = "remove" + = "fullscreen" + = "overlay" +

= "exec echo $imv_path" + = "center" + = "scaling_mode next" + = "zoom actual" + = "reset" # Gif playback -. = next_frame - = toggle_playing +<.> = "next_frame" + = "toggle_playing" # Slideshow control -T = slideshow_duration +1 - = slideshow_duration -1 + = "slideshow_duration +1" + = "slideshow_duration -1" -- cgit v1.2.3