1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 06:52:28 +01:00

Fix completion bug. Speed completion scrolling by another 20ui.js.

This commit is contained in:
Kris Maglione
2008-11-28 07:12:54 +00:00
parent 20596df015
commit 43ae46bf1a
3 changed files with 46 additions and 37 deletions

View File

@@ -320,7 +320,11 @@ function Bookmarks() //{{{
},
{
bang: true,
completer: function completer(context, args) completion.bookmark(context, args["-tags"]),
completer: function completer(context, args)
{
context.quote = null;
completion.bookmark(context, args["-tags"]);
},
options: [[["-tags", "-T"], commands.OPTION_LIST, null, tags]]
});