diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2019-08-23 21:08:35 +0100 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2019-08-23 21:08:35 +0100 |
commit | cf706293db0bd8e56ed4287382b774947a3f8a88 (patch) | |
tree | 531a75bd5aa815c195f6d643c166eacbaadda1c7 | |
parent | 97e2aafa383677ac749e68e0d2631449171a846f (diff) | |
download | imv-cf706293db0bd8e56ed4287382b774947a3f8a88.tar.gz |
Update default config
-rw-r--r-- | files/imv_config | 32 | ||||
-rw-r--r-- | src/imv.c | 1 |
2 files changed, 17 insertions, 16 deletions
diff --git a/files/imv_config b/files/imv_config index 443e2f2..2c7dc2a 100644 --- a/files/imv_config +++ b/files/imv_config @@ -7,22 +7,22 @@ suppress_default_binds = true [aliases] -q = quit -next = select_rel 1 -previous = select_rel -1 -n = select_rel 1 -p = select_rel -1 +# Define aliases here. Any arguments passed to an alias are appended to the +# command. +# alias = command to run [binds] +# Deinfe some key bindings q = quit +y = exec echo working! # Image navigation -<Left> = select_rel -1 -<LeftSquareBracket> = select_rel -1 -<Right> = select_rel 1 -<RightSquareBracket> = select_rel 1 -gg = select_abs 0 -<Shift+g> = select_abs -1 +<Left> = prev +<bracketleft> = prev +<Right> = next +<bracketright> = next +gg = goto 0 +<Shift+G> = goto -1 # Panning j = pan 0 -50 @@ -32,8 +32,10 @@ l = pan -50 0 # Zooming <Up> = zoom 1 +<Shift+plus> = zoom 1 i = zoom 1 <Down> = zoom -1 +<minus> = zoom -1 o = zoom -1 # Other commands @@ -47,9 +49,9 @@ a = zoom actual r = reset # Gif playback -. = next_frame -<Space> = toggle_playing +<period> = next_frame +<space> = toggle_playing # Slideshow control -t = slideshow_duration +1 -<Shift+t> = slideshow_duration -1 +t = slideshow +1 +<Shift+T> = slideshow -1 @@ -569,7 +569,6 @@ struct imv *imv_create(void) add_bind(imv, "f", "fullscreen"); add_bind(imv, "d", "overlay"); add_bind(imv, "p", "exec echo $imv_current_file"); - add_bind(imv, "<equal>", "zoom 1"); add_bind(imv, "<Up>", "zoom 1"); add_bind(imv, "<Shift+plus>", "zoom 1"); add_bind(imv, "i", "zoom 1"); |