From 4e9450f955e763a4d301645ab11201834d8a0ccc Mon Sep 17 00:00:00 2001 From: hut Date: Thu, 14 Jan 2010 02:59:14 +0100 Subject: 1.0.2! --- doc/pydoc/ranger.container.commandlist.html | 51 ++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) (limited to 'doc/pydoc/ranger.container.commandlist.html') diff --git a/doc/pydoc/ranger.container.commandlist.html b/doc/pydoc/ranger.container.commandlist.html index 095138b6..0e547ffe 100644 --- a/doc/pydoc/ranger.container.commandlist.html +++ b/doc/pydoc/ranger.container.commandlist.html @@ -34,7 +34,12 @@
Command -
CommandArgument +
+
+
AliasedCommand +
+
+
CommandArgument
CommandList
Hint
@@ -44,6 +49,44 @@ + + +
 
+class AliasedCommand(Command)
    
Method resolution order:
+
AliasedCommand
+
Command
+
builtins.object
+
+
+Methods defined here:
+
__init__(self, getter, keys)
+ +
get_execute(self)
+ +
+Data descriptors defined here:
+
execute
+
+
+Methods inherited from Command:
+
execute_wrap(self, displayable)
+ +
+Data descriptors inherited from Command:
+
__dict__
+
dictionary for instance variables (if defined)
+
+
__weakref__
+
list of weak references to the object (if defined)
+
+
+Data and other attributes inherited from Command:
+
keys = []
+ +

+ + + @@ -101,8 +144,12 @@ for a given key combination.  CommandLists mu
__init__(self)
+
alias(self, existing, *new)
bind the <new> keys to the command of the <existing> key
+
bind(self, fnc, *keys)
create a Command object and assign it to the given key combinations.
+
clear(self)
remove all bindings
+
hint(self, text, *keys)
create a Hint object and assign it to the given key combinations.
rebuild_paths(self)
Fill the path dictionary with dummie objects.
@@ -114,6 +161,8 @@ and wait.
remove_dummies(self)
Remove dummie objects in case you have to rebuild a path dictionary
which already contains dummie objects.
+
unbind(self, *keys)
+
Data descriptors defined here:
__dict__
-- cgit 1.4.1-2-gfad0
 
class Command(builtins.object)