summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-18 23:56:32 +0200
committerhut <hut@lavabit.com>2010-04-18 23:56:32 +0200
commit0f0416ebe698fb0e9c876d34c79e6c0179449e1b (patch)
tree75c7f11e8df36676650b4cdba27ed27bdf53d7c8
parentc4403abb000430b41c1aed25e3bb11e569bbe4e0 (diff)
downloadranger-0f0416ebe698fb0e9c876d34c79e6c0179449e1b.tar.gz
ext.command_parser: bugfix in tab completion
-rw-r--r--ranger/ext/command_parser.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/ext/command_parser.py b/ranger/ext/command_parser.py
index d737c277..3b65067c 100644
--- a/ranger/ext/command_parser.py
+++ b/ranger/ext/command_parser.py
@@ -64,6 +64,7 @@ class LazyParser(object):
 				except:
 					break
 				if index == 1:
+					line = line[1:]
 					continue
 				result = line[:index]
 				self._starts.append(result)