about summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-09-30 12:10:00 +0200
committerhut <hut@lavabit.com>2011-09-30 16:43:28 +0200
commitf93725f5ff3890c99c65f5fa2998d9eeda6dd16b (patch)
tree17ea7d9a9057fef6a9d55d00d3fecef9b4391ee6 /ranger/core/actions.py
parent41df56beff2785174b4b466c8cc39159a79eaedc (diff)
downloadranger-f93725f5ff3890c99c65f5fa2998d9eeda6dd16b.tar.gz
Extended rc.conf
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 3427af7f..44b5eac8 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -269,7 +269,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 
 	def history_go(self, relative):
 		"""Move back and forth in the history"""
-		self.env.history_go(relative)
+		self.env.history_go(int(relative))
 
 	def scroll(self, relative):
 		"""Scroll down by <relative> lines"""
@@ -329,7 +329,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 	def hint(self, text):
 		self.ui.hint(text)
 
-	def toggle_boolean_option(self, string):
+	def toggle_option(self, string):
 		"""Toggle a boolean option named <string>"""
 		if isinstance(self.env.settings[string], bool):
 			self.env.settings[string] ^= True
@@ -418,9 +418,9 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 			except:
 				return False
 		self.env.last_search = text
-		self.search(order='search', offset=offset)
+		self.search_next(order='search', offset=offset)
 
-	def search(self, order=None, offset=1, forward=True):
+	def search_next(self, order=None, offset=1, forward=True):
 		original_order = order
 		if self.search_forward:
 			direction = bool(forward)