1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:32:27 +01:00

Fix <Tab> substring completion

This commit is contained in:
Kris Maglione
2008-11-21 06:26:53 +00:00
parent df6a9a9428
commit 2d7036b917

View File

@@ -891,7 +891,7 @@ function CommandLine() //{{{
else if (full) else if (full)
compl = completions.items[completionIndex][0]; compl = completions.items[completionIndex][0];
else if (completions.items.length == 1) else if (completions.items.length == 1)
compl = completion.items[0][0]; compl = completions.items[0][0];
if (compl) if (compl)
{ {