summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-01-13 21:31:02 +0100
committerhut <hut@lavabit.com>2010-01-13 21:31:02 +0100
commit698ba46a5a73682a5f9d7832c23683868246841f (patch)
tree5769de9fcb5089fc10b784d45c2f637b302d0f01 /ranger
parent63502bea559898d5e79738659424fe3875f913ad (diff)
downloadranger-698ba46a5a73682a5f9d7832c23683868246841f.tar.gz
commandlist: added clear()
Diffstat (limited to 'ranger')
-rw-r--r--ranger/container/commandlist.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/ranger/container/commandlist.py b/ranger/container/commandlist.py
index eca73f23..2ba22ef7 100644
--- a/ranger/container/commandlist.py
+++ b/ranger/container/commandlist.py
@@ -141,7 +141,12 @@ class CommandList(object):
 		for k in keys:
 			del self.paths[k]
 
+	def clear(self):
+		"""remove all bindings"""
+		self.paths.clear()
+		del self.commandlist[:]
 	
+
 class Command(object):
 	"""Command objects store information about a command"""