blob: 0d6981ed074b237302e760f24bf1929ca78ac91f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[options]
command-1=|convert - -blur 80 -
[keybindings]
j { shift_y(-5); }
k { shift_y(5); }
h { shift_x(5); }
l { shift_x(-5); }
J { shift_y(-40); }
K { shift_y(40); }
H { shift_x(40); }
L { shift_x(-40); }
<control>j { shift_y(-200); }
<control>k { shift_y(200); }
<control>h { shift_x(200); }
<control>l { shift_x(-200); }
w { rotate_left(); }
e { rotate_right(); }
g { jump_dialog(); }
<equal> { reset_scale_level() }
|