diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 0e3e10a1..b79a6570 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -173,7 +173,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), { let filters = args.map(function (arg) RegExp("\\b" + util.regexp.escape(arg) + "\\b", "i")); if (filters.length) - results = results.filter(function (item) filters.every(function (re) re.test(item.name + item.description))); + results = results.filter(function (item) filters.every(function (re) re.test(item.name + " " + item.description))); commandline.commandOutput( template.usage(results, params.format));