1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-13 04:15:47 +01:00

Fix some args completion bugs. Update where JS completion waits for tab.

This commit is contained in:
Kris Maglione
2008-11-29 11:39:35 +00:00
parent b73d644eae
commit 69f6c66eda
3 changed files with 20 additions and 15 deletions

View File

@@ -308,7 +308,7 @@ function Bookmarks() //{{{
{
argCount: "?",
bang: true,
options: [[["-title", "-t"], commands.OPTION_STRING],
options: [[["-title", "-t"], commands.OPTION_STRING, null, function () [[content.document.title, "Current Page Title"]]],
[["-tags", "-T"], commands.OPTION_LIST, null, tags],
[["-keyword", "-k"], commands.OPTION_STRING, function (arg) /\w/.test(arg)]]
});