.BI "hint-save [" QUERY "]"
Start hinting to download hinted links into configured download directory.
.TP
-.BI "hint-push [" QUERY "]"
+.BI "hint-queue-push [" QUERY "]"
Start hinting to push hinted URI into the read it later queue. If PROJECT hab
been compiled with QUEUE feature.
list). This list is shared between the single instances of PROJECT. Only
available if PROJECT has been compiled with QUEUE feature.
.TP
-.BI "push [" URI ]
+.BI "queue-push [" URI ]
Push \fIURI\fP or if not given
current URI into the queue.
.TP
-.B pop
+.B queue-pop
Open the oldest queue entry
in current browser window and remove it from the queue.
.RE
.I $XDG_CONFIG_HOME/PROJECT/queue
.RS
-Holds the read it later queue filled by `hint-push' or `push' if PROJECT has
-been compiled with QUEUE feature.
+Holds the read it later queue filled by `hint-queue-push' or `queue-push' if
+PROJECT has been compiled with QUEUE feature.
.RE
.I $XDG_CONFIG_HOME/PROJECT/scripts.js
.RS
{"hint-editor", NULL, command_hints, {HINTS_TYPE_EDITABLE}},
{"hint-save", NULL, command_hints, {HINTS_TYPE_LINK | HINTS_PROCESS_SAVE}},
#ifdef FEATURE_QUEUE
- {"hint-push", NULL, command_hints, {HINTS_TYPE_LINK | HINTS_PROCESS_PUSH}},
+ {"hint-queue-push", NULL, command_hints, {HINTS_TYPE_LINK | HINTS_PROCESS_PUSH}},
#endif
{"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}},
{"save", NULL, command_save, {COMMAND_SAVE_CURRENT}},
{"shellcmd", NULL, command_shellcmd, {0}},
#ifdef FEATURE_QUEUE
- {"push", NULL, command_queue, {COMMAND_QUEUE_PUSH}},
- {"pop", NULL, command_queue, {COMMAND_QUEUE_POP}},
+ {"queue-push", NULL, command_queue, {COMMAND_QUEUE_PUSH}},
+ {"queue-pop", NULL, command_queue, {COMMAND_QUEUE_POP}},
#endif
};