mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Console: Fix prefixed space for tab completing commands
This commit is contained in:
parent
211c27aaae
commit
569dd0c585
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ class Legacy(BaseMode):
|
|||
self.write(match)
|
||||
else:
|
||||
p = " ".join(line.split(" ")[:-1])
|
||||
new_line = " ".join([p, os.path.commonprefix(possible_matches)])
|
||||
new_line = " ".join([p, os.path.commonprefix(possible_matches)]).lstrip()
|
||||
if len(new_line) > len(line):
|
||||
line = new_line
|
||||
cursor = len(line)
|
||||
|
|
Loading…
Add table
Reference in a new issue