mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 12:27:59 +01:00
Added completion for :delqmarks. Again, from IRC, bugfix, not feature.
This commit is contained in:
@@ -962,7 +962,14 @@ function QuickMarks() //{{{
|
||||
else
|
||||
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]"],
|
||||
"Mark a URL with a letter for quick access",
|
||||
|
||||
Reference in New Issue
Block a user