summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-07 01:05:32 +0200
committerhut <hut@lavabit.com>2010-04-07 01:05:32 +0200
commit5fd9c5ce80699e28c3bbf918af7a69fc3df61fad (patch)
treeb6fe2136adf7e24ae8d14991cbfdf8a840f23e2c /ranger/core/actions.py
parent26aa5c8e7272105a15b9cc7cbbfb0ca789701d55 (diff)
downloadranger-5fd9c5ce80699e28c3bbf918af7a69fc3df61fad.tar.gz
fixes
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index cce2cd75..489a6bef 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -47,9 +47,9 @@ class Actions(EnvironmentAware, SettingsAware):
 
 	def move_right(self, narg=None):
 		"""Enter the current directory or execute the current file"""
-		self.move(right=0, narg=narg)
+		self.move(right=1, narg=narg)
 
-	def move_pointer(self, relative = 0, absolute = None, narg=None):
+	def move_pointer(self, relative=0, absolute=None, narg=None):
 		"""Move the pointer down by <relative> or to <absolute>"""
 		dct = dict(down=relative, narg=narg)
 		if absolute is not None:
@@ -137,7 +137,7 @@ class Actions(EnvironmentAware, SettingsAware):
 		Example:
 		self.move(down=4, pages=True)  # moves down by 4 pages.
 		self.move(to=2, pages=True)  # moves to page 2.
-		self.move(right=1, percentage=True)  # moves to 80%
+		self.move(to=1, percentage=True)  # moves to 80%
 		"""
 		direction = Direction(kw)
 		if 'left' in direction:
@@ -151,7 +151,7 @@ class Actions(EnvironmentAware, SettingsAware):
 			self.env.enter_dir(directory)
 
 		elif 'right' in direction:
-			mode = direction.right()
+			mode = 0
 			if narg is not None:
 				mode = narg
 			cf = self.env.cf