diff --git a/content/completion.js b/content/completion.js index 2bd9d763..c5fd6207 100644 --- a/content/completion.js +++ b/content/completion.js @@ -45,11 +45,12 @@ liberator.Completion = function () //{{{ let comp = []; for (let i in liberator.util.range(0, historyResult.matchCount)) comp.push([historyResult.getValueAt(i), - historyResult.getCommentAt(i)]); + historyResult.getCommentAt(i), + historyResult.getImageAt(i)]); //let foo = ["", "IGNORED", "FAILURE", "NOMATCH", "SUCCESS", "NOMATCH_ONGOING", "SUCCESS_ONGOING"]; - historyCache = comp.map(addIcon); + historyCache = comp; liberator.commandline.setCompletions(completionCache.concat(historyCache)); });