aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeinzi <Jeinzi@gmx.de>2018-09-01 03:33:22 +0200
committerJeinzi <Jeinzi@gmx.de>2018-09-01 03:33:22 +0200
commitb5e646615e42a1f6991c7424c639faf2c4b49d52 (patch)
tree25f38f4185b3757b1c385456663ab2078f9d3b62
parent88d6dc2ef7ebee4b04b079455727034a0f594aae (diff)
downloadimv-b5e646615e42a1f6991c7424c639faf2c4b49d52.tar.gz
Adapted documentation.
-rw-r--r--README.md7
-rw-r--r--doc/imv.5.txt3
2 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index 12e3a1d..fd139d2 100644
--- a/README.md
+++ b/README.md
@@ -51,15 +51,16 @@ you like.
In your imv config:
[binds]
- <Shift+x> = exec rm $imv_current_file
+ <Shift+x> = exec rm "$imv_current_file"
+ <Shift+x> = close
-Then press 'X' within imv to delete the image.
+Then press 'X' within imv to delete the image and close it.
#### Rotate an image
In your imv config:
[binds]
- <Shift+r> = exec mogrify -rotate 90 $imv_current_file
+ <Shift+r> = exec mogrify -rotate 90 "$imv_current_file"
Then press 'R' within imv to rotate the image 90 degrees using imagemagick.
diff --git a/doc/imv.5.txt b/doc/imv.5.txt
index cb12eb3..8c376a6 100644
--- a/doc/imv.5.txt
+++ b/doc/imv.5.txt
@@ -96,7 +96,8 @@ Binds
The *[binds]* section allows custom key bindings to be added to imv.
Binds are in the format 'key combination = command'. A key combination can
-consist of multiple keys in succession.
+consist of multiple keys in succession. If there is more then one command
+defined for a given key combination, they are executed one after another.
Single keys such as 'q' are just that: 'q = quit' will bind the 'q' key to the
'quit' command.