1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-01 05:25:45 +01:00

Don't muck with search engine aliases unduly.

This commit is contained in:
Kris Maglione
2010-11-09 16:26:39 -05:00
parent da1d2457ec
commit ce679ddae0
2 changed files with 23 additions and 34 deletions

View File

@@ -531,8 +531,7 @@ const Mappings = Module("mappings", {
completion.userMapping = function userMapping(context, modes) {
// FIXME: have we decided on a 'standard' way to handle this clash? --djk
modes = modes || [modules.modes.NORMAL];
let maps = [[m.names[0], ""] for (m in mappings.getUserIterator(modes))];
context.completions = maps;
context.completions = [[m.names[0], ""] for (m in mappings.getUserIterator(modes))];
};
},
javascript: function () {