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

Added completion for :delqmarks. Again, from IRC, bugfix, not feature.

This commit is contained in:
Ted Pavlic
2009-01-07 16:11:01 -05:00
parent 7bb208020c
commit 0cc75219d0

View File

@@ -962,7 +962,14 @@ function QuickMarks() //{{{
else else
quickmarks.remove(args.string); quickmarks.remove(args.string);
}, },
{ bang: true }); {
bang: true,
completer: function (context)
{
context.title = ["QuickMark", "URL"];
context.completions = [[key, val] for ([key, val] in qmarks)];
}
});
commands.add(["qma[rk]"], commands.add(["qma[rk]"],
"Mark a URL with a letter for quick access", "Mark a URL with a letter for quick access",