aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/imv.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/imv.c b/src/imv.c
index 2c22f24..acdb39f 100644
--- a/src/imv.c
+++ b/src/imv.c
@@ -531,6 +531,11 @@ struct imv *imv_create(void)
imv_command_alias(imv->commands, "bg", "background");
imv_command_alias(imv->commands, "ss", "slideshow");
+ /* aliases to improve backwards compatibility with <v4 */
+ imv_command_alias(imv->commands, "select_rel", "next");
+ imv_command_alias(imv->commands, "select_abs", "goto");
+ imv_command_alias(imv->commands, "scaling_method", "scaling");
+
add_bind(imv, "q", "quit");
add_bind(imv, "<Left>", "prev");
add_bind(imv, "<bracketleft>", "prev");