1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-26 22:02:26 +01:00

Merge pull request #159 from airodactyl/fix-match-idx

Offset the index by 1 so matches show from 1 to n
This commit is contained in:
dkearns
2016-08-10 05:39:53 +10:00
committed by GitHub

View File

@@ -1600,7 +1600,7 @@ var CommandLine = Module("commandline", {
statusline.progress = "";
else
statusline.progress = _("completion.matchIndex",
this.itemList.getOffset(idx),
this.itemList.getOffset(idx) + 1,
this.itemList.itemCount);
},