1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 21:42:26 +01:00

Fix :command listings.

This commit is contained in:
Doug Kearns
2016-01-13 10:41:12 +11:00
parent 94b4be6b6f
commit 8835121bcf

View File

@@ -836,7 +836,7 @@ var Commands = Module("commands", {
function completerToString(completer) {
if (completer) {
for (let [key, val] of Object.entries(config.completers))
if (completion.bound(val) === completer)
if (completion.bound[val] === completer)
return key;
return "custom";