aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2017-11-28 22:07:18 +0000
committerHarry Jeffery <harry@exec64.co.uk>2017-11-28 22:07:18 +0000
commite9ad72508cb0e05c1cb4d581e66aae34b0210c45 (patch)
tree0f82b689f537ac6784c60374c5823a6967f243b6
parentf4bf8bc6f645f1aeb396effd17f1afdd6b909a75 (diff)
downloadimv-e9ad72508cb0e05c1cb4d581e66aae34b0210c45.tar.gz
Tweak environment variable name for current path
-rw-r--r--files/imv_config2
-rw-r--r--src/imv.c4
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, "<x>", "remove");
add_bind(imv, "<f>", "fullscreen");
add_bind(imv, "<d>", "overlay");
- add_bind(imv, "<p>", "exec echo $imv_path");
+ add_bind(imv, "<p>", "exec echo $imv_current_file");
add_bind(imv, "<Equals>", "zoom 1");
add_bind(imv, "<Up>", "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);
}