summary refs log tree commit diff stats
path: root/ranger/api/keys.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/api/keys.py')
-rw-r--r--ranger/api/keys.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/api/keys.py b/ranger/api/keys.py
index 86911569..d1011d22 100644
--- a/ranger/api/keys.py
+++ b/ranger/api/keys.py
@@ -55,9 +55,9 @@ class Wrapper(object):
 # If the method has an argument named "narg", pressing a number before
 # the key will pass that number as the narg argument. If you want the
 # same behaviour in a custom lambda function, you can write:
-# bind('gg', fm.move_pointer(absolute=0))
+# bind('gg', fm.move(to=0))
 # as:
-# bind('gg', lambda arg: narg(arg.n, arg.fm.move_pointer, absolute=0))
+# bind('gg', lambda arg: narg(arg.n, arg.fm.move, to=0))
 
 fm = Wrapper('fm')
 wdg = Wrapper('wdg')