Commit 7311bf46 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Add documentation and default keybindings for flip/mirror

parent 5a280fd5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -10,6 +10,8 @@ git HEAD
      <https://github.com/derf/feh/issues/49>
    * Allow Shift modifier in key config
      <https://github.com/derf/feh/issues/30>
    * New actions: lossless flip (key _) and mirror (key |)
      <https://github.com/derf/feh/issues/53>

Mon, 04 Jul 2011 14:46:36 +0200  Daniel Friesel <derf@finalrewind.org>

+11 −0
Original line number Diff line number Diff line
@@ -1012,6 +1012,17 @@ away. See
.Xr jpegtran 1
for more about lossless JPEG rotation.
.
.It _ Bq flip
.
In place editing - vertical flip
.
.It | Bq mirror
.
In place editing - horizontal flip.
Again, see
.Xr jpegtran 1
for more information.
.
.It 0 .. 9 Bq action_0 .. action_9
.
Execute the corresponding action
+2 −0
Original line number Diff line number Diff line
@@ -147,6 +147,8 @@ void init_keyevents(void) {
	feh_set_kb(&keys.save_filelist, 0, XK_f, 0, 0, 0, 0);
	feh_set_kb(&keys.orient_1, 0, XK_greater, 0, 0, 0, 0);
	feh_set_kb(&keys.orient_3, 0, XK_less, 0, 0, 0, 0);
	feh_set_kb(&keys.flip, 0, XK_underscore, 0, 0, 0, 0);
	feh_set_kb(&keys.mirror, 0, XK_bar, 0, 0, 0, 0);
	feh_set_kb(&keys.reload_minus, 0, XK_minus, 0, 0, 0, 0);
	feh_set_kb(&keys.reload_plus, 0, XK_plus, 0, 0, 0, 0);