summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-02-17 23:54:20 +0100
committerhut <hut@lavabit.com>2013-02-17 23:54:20 +0100
commit7873a7cf96be9106836d76227f535f168839ad8b (patch)
tree9038056529a1f8f593bd9f0df3d3d59f27af2b61
parent279a30238aa47f2bd37abcb40ecb907004e4bd8c (diff)
downloadranger-7873a7cf96be9106836d76227f535f168839ad8b.tar.gz
config/commands: update docstring of :travel
-rw-r--r--ranger/config/commands.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index 4c3b3bac..5f6c6b2b 100644
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -1060,9 +1060,11 @@ class travel(Command):
     """
     :travel <string>
 
-    Displays only the files which contain <string> in their basename.
-    Unlike :narrow, this leaves open the console so you can travel faster
-    from directory to directory.
+    Filters the current directory for files containing the letters in the
+    string, possibly with other letters in between.  The filter is applied as
+    you type.  When only one directory is left, it is entered and the console
+    is automatially reopened, allowing for fast travel.
+    To close the console, press ESC or execute a file.
     """
 
     def execute(self):
37'>137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182