From e9ad72508cb0e05c1cb4d581e66aae34b0210c45 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Tue, 28 Nov 2017 22:07:18 +0000 Subject: Tweak environment variable name for current path --- files/imv_config | 2 +- src/imv.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/files/imv_config b/files/imv_config index d7f6438..5694390 100644 --- a/files/imv_config +++ b/files/imv_config @@ -87,7 +87,7 @@ o = zoom -1 x = remove f = fullscreen d = overlay -p = exec echo $imv_path +p = exec echo $imv_current_file c = center s = scaling_mode next a = zoom actual diff --git a/src/imv.c b/src/imv.c index 2d67bf7..b86ddcd 100644 --- a/src/imv.c +++ b/src/imv.c @@ -191,7 +191,7 @@ struct imv *imv_create(void) add_bind(imv, "", "remove"); add_bind(imv, "", "fullscreen"); add_bind(imv, "", "overlay"); - add_bind(imv, "

", "exec echo $imv_path"); + add_bind(imv, "

", "exec echo $imv_current_file"); add_bind(imv, "", "zoom 1"); add_bind(imv, "", "zoom 1"); add_bind(imv, "<+>", "zoom 1"); @@ -1076,7 +1076,7 @@ void command_exec(struct list *args, const char *argstr, void *data) { (void)args; struct imv *imv = data; - setenv("imv_path", imv_navigator_selection(imv->navigator), 1); + setenv("imv_current_file", imv_navigator_selection(imv->navigator), 1); system(argstr); } -- cgit v1.2.3