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

This commit is contained in:
Ted Pavlic
2009-01-07 16:11:28 -05:00
parent 7bb208020c
commit 0cc75219d0
+8 -1
View File
@@ -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",