Clarified comments in key-handler, fixes issue #206
This commit is contained in:
parent
01ed483b50
commit
9264a65c19
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION := git-20150206
|
VERSION := git-20150518
|
||||||
|
|
||||||
PREFIX := /usr/local
|
PREFIX := /usr/local
|
||||||
MANPREFIX := $(PREFIX)/share/man
|
MANPREFIX := $(PREFIX)/share/man
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
|
|
||||||
# Example for $XDG_CONFIG_HOME/sxiv/exec/key-handler
|
# Example for $XDG_CONFIG_HOME/sxiv/exec/key-handler
|
||||||
# Called by sxiv(1) after the external prefix key (C-x by default) is pressed.
|
# Called by sxiv(1) after the external prefix key (C-x by default) is pressed.
|
||||||
# The next key combo is passed as its first argument. The paths of all marked
|
# The next key combo is passed as its first argument. Passed via stdin are the
|
||||||
# images--or of the current image, if no image is marked--are passed via stdin,
|
# images to act upon, one path per line: all marked images, if in thumbnail
|
||||||
# one file path per line.
|
# mode and at least one image has been marked, otherwise the current image.
|
||||||
# sxiv(1) blocks until this script terminates. It then checks which images
|
# sxiv(1) blocks until this script terminates. It then checks which images
|
||||||
# have been modified and reloads them.
|
# have been modified and reloads them.
|
||||||
|
|
||||||
|
|
6
sxiv.1
6
sxiv.1
|
@ -361,9 +361,9 @@ located in
|
||||||
.IR $XDG_CONFIG_HOME/sxiv/exec/key-handler .
|
.IR $XDG_CONFIG_HOME/sxiv/exec/key-handler .
|
||||||
The handler is invoked by pressing
|
The handler is invoked by pressing
|
||||||
.BR Ctrl-x .
|
.BR Ctrl-x .
|
||||||
The next key combo is passed as its first argument. The paths of all marked
|
The next key combo is passed as its first argument. Passed via stdin are the
|
||||||
images--or of the current image, if no image is marked--are passed via stdin,
|
images to act upon, one path per line: all marked images, if in thumbnail mode
|
||||||
one file path per line.
|
and at least one image has been marked, otherwise the current image.
|
||||||
sxiv(1) will block until the handler terminates. It then checks which images
|
sxiv(1) will block until the handler terminates. It then checks which images
|
||||||
have been modified and reloads them.
|
have been modified and reloads them.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue