From 0cc75219d0adb91ac6cb2f9f50f95ebbf941314b Mon Sep 17 00:00:00 2001 From: Ted Pavlic Date: Wed, 7 Jan 2009 16:11:01 -0500 Subject: [PATCH] Added completion for :delqmarks. Again, from IRC, bugfix, not feature. --- vimperator/content/bookmarks.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vimperator/content/bookmarks.js b/vimperator/content/bookmarks.js index 753e57a2..c8cb2247 100644 --- a/vimperator/content/bookmarks.js +++ b/vimperator/content/bookmarks.js @@ -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",