.TP
.BI "hint-save [" QUERY "]"
Start hinting to download hinted links into configured download directory.
+.TP
+.BI "hint-push [" QUERY "]"
+Start hinting to push hinted URI into the read it later queue.
.SS Yank
.TP
.TP
.B U
Open the last closed page into a new window.
+.TP ctrl\-p
+Open the oldest entry from read it later queue in current browser window.
.TP
.B ctrl\-q
Quit the browser.
.B ;\-s
Start hinting to download the linkes resource.
.TP
+.B ;\-p
+Start hinting to push hinted URI into queue.
+.TP
.B y
Yank the URI or current page into clipboard.
.TP
{"hint-image-tabopen", NULL, command_hints, {HINTS_TYPE_IMAGE | HINTS_PROCESS_OPEN | HINTS_OPEN_NEW}},
{"hint-editor", NULL, command_hints, {HINTS_TYPE_EDITABLE}},
{"hint-save", NULL, command_hints, {HINTS_TYPE_LINK | HINTS_PROCESS_SAVE}},
+ {"hint-push", NULL, command_hints, {HINTS_TYPE_LINK | HINTS_PROCESS_PUSH}},
{"yank-uri", "yu", command_yank, {VB_CLIPBOARD_PRIMARY | VB_CLIPBOARD_SECONDARY | COMMAND_YANK_URI}},
{"yank-selection", "ys", command_yank, {VB_CLIPBOARD_PRIMARY | VB_CLIPBOARD_SECONDARY | COMMAND_YANK_SELECTION}},
{"search-forward", NULL, command_search, {VB_SEARCH_FORWARD}},
prefix = ";y";
} else if (mode & HINTS_PROCESS_SAVE) {
prefix = ";s";
+ } else if (mode & HINTS_PROCESS_PUSH) {
+ prefix = ";p";
}
break;
a.s = v;
a.i = COMMAND_SAVE_URI;
command_save(&a);
+ } else if (mode & HINTS_PROCESS_PUSH) {
+ a.s = v;
+ a.i = COMMAND_QUEUE_PUSH;
+ command_queue(&a);
} else {
a.i = VB_CLIPBOARD_PRIMARY | VB_CLIPBOARD_SECONDARY;
a.s = v;
HINTS_PROCESS_SAVE = (1 << 5),
/* additional flag for HINTS_PROCESS_OPEN */
HINTS_OPEN_NEW = (1 << 6),
+ HINTS_PROCESS_PUSH = (1 << 7),
};
void hints_init(WebKitWebFrame *frame);