summary refs log tree commit diff stats
path: root/ranger/defaults
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-08-26 15:40:46 +0200
committerhut <hut@lavabit.com>2010-08-26 15:40:46 +0200
commitf20fc829c48b2ac4076e388a320fd82580356658 (patch)
treee07b112c5fc1d84ca460425d836b2a00175e1a3d /ranger/defaults
parentc525589d6c6a7fd00be099d2e399f08113f4a33f (diff)
downloadranger-f20fc829c48b2ac4076e388a320fd82580356658.tar.gz
Updated documentation for the console
Diffstat (limited to 'ranger/defaults')
-rw-r--r--ranger/defaults/commands.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py
index acfbfffb..8005100c 100644
--- a/ranger/defaults/commands.py
+++ b/ranger/defaults/commands.py
@@ -20,7 +20,7 @@ Each command is a subclass of `Command'.  Several methods are defined
 to interface with the console:
 	execute: call this method when the command is executed.
 	tab: call this method when tab is pressed.
-	quick: call this method after each keypress in the QuickCommandConsole.
+	quick: call this method after each keypress.
 
 The return values for tab() can be either:
 	None: There is no tab completion
@@ -69,9 +69,6 @@ class cd(Command):
 
 	The cd command changes the directory.
 	The command 'cd -' is equivalent to typing ``.
-
-	In the quick console, the directory will be entered without the
-	need to press enter, as soon as there is one unambiguous match.
 	"""
 
 	def execute(self):
@@ -255,10 +252,8 @@ class find(Command):
 	:find <string>
 
 	The find command will attempt to find a partial, case insensitive
-	match in the filenames of the current directory.
-
-	In the quick command console, once there is one unambiguous match,
-	the file will be run automatically.
+	match in the filenames of the current directory and execute the
+	file automatically.
 	"""
 
 	count = 0