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",