summary refs log tree commit diff stats
path: root/ranger/keyapi.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/keyapi.py')
-rw-r--r--ranger/keyapi.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/ranger/keyapi.py b/ranger/keyapi.py
index 2159660a..56552584 100644
--- a/ranger/keyapi.py
+++ b/ranger/keyapi.py
@@ -45,20 +45,20 @@ wdg = Wrapper('wdg')
 # Another wrapper for common actions which use a numerical argument:
 class nwrap(object):
 	@staticmethod
-	def move(relative=0, absolute=None):
+	def move(relative=0, absolute=None, pages=False):
 		if absolute is None:
 			def fnc(arg):
 				if arg.n is not None:
 					if relative >= 0:
-						arg.wdg.move(relative=arg.n)
+						arg.wdg.move(relative=arg.n, pages=pages)
 					else:
-						arg.wdg.move(relative=-arg.n)
+						arg.wdg.move(relative=-arg.n, pages=pages)
 				else:
-					arg.wdg.move(relative=relative)
+					arg.wdg.move(relative=relative, pages=pages)
 		else:
 			def fnc(arg):
 				if arg.n is not None:
-					arg.wdg.move(absolute=arg.n, relative=relative)
+					arg.wdg.move(absolute=arg.n, relative=relative, pages=pages)
 				else:
-					arg.wdg.move(absolute=absolute, relative=relative)
+					arg.wdg.move(absolute=absolute, relative=relative, pages=pages)
 		return fnc
nisanti/profani-tty/commit/tests/otr/mock_otr.c?id=a21ab6d4c8d9de9abce9dddd1d23668779ca15e7'>a21ab6d4 ^
52f66fde ^
a21ab6d4 ^

82ad0cd3 ^

a21ab6d4 ^
52f66fde ^
a21ab6d4 ^

037ca818 ^



52f66fde ^
037ca818 ^

18e0884f ^





c0037608 ^


52f66fde ^
c0037608 ^

a21ab6d4 ^


4eac5c0d ^
a21ab6d4 ^





82ad0cd3 ^
a21ab6d4 ^

82ad0cd3 ^






037ca818 ^







18e0884f ^






c0037608 ^






e10ea1be ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97