1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 15:07:57 +01:00

Filter :u completions based on text and description.

--HG--
branch : xslt
This commit is contained in:
Kris Maglione
2009-10-26 17:19:08 -04:00
parent 66b2656cb0
commit 77beb82f45
2 changed files with 6 additions and 5 deletions

View File

@@ -670,7 +670,8 @@ function Tabs() //{{{
{
context.anchored = false;
context.compare = CompletionContext.Sort.unsorted;
context.keys = { text: function ([i, item]) (i + 1) + ": " + item.state.entries[item.state.index - 1].url, description: "[1].title", icon: "[1].image" };
context.filters = [CompletionContext.Filter.textDescription];
conext.keys = { text: function ([i, isem]) (i + 1) + ": " + item.state.entries[item.state.index - 1].url, description: "[1].title", icon: "[1].image" };
context.completions = Iterator(tabs.closedTabs);
},
count: true,