1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 11:07:59 +01:00

Fix completion.highlightGroup to only show highlight groups.

This commit is contained in:
Doug Kearns
2009-08-27 20:22:56 +10:00
parent aad5eac202
commit 53a6d8c6ef

View File

@@ -732,11 +732,10 @@ liberator.registerObserver("load_completion", function () {
context.completions = [[c.leafName.replace(/\.vimp$/, ""), c.parent.path] for ([, c] in Iterator(colors))]
};
// FIXME: extract from :highlight
completion.highlightGroup = function highlightGroup(context, args) {
return commands.get("highlight").completer(context, args);
completion.highlightGroup = function highlightGroup(context) {
context.title = ["Highlight Group", "Value"];
context.completions = [[v.class, v.value] for (v in highlight)];
};
});
//}}}