Now the latest added items of the bookmarks file are shown first, so it's
similar to the history completion.
Bookmark *bm;
src = load(vb.files[FILES_BOOKMARK]);
+ src = g_list_reverse(src);
if (!input || *input == '\0') {
/* without any tags return all bookmarked items */
for (GList *l = src; l; l = l->next) {
if (suffix && *suffix == TAG_INDICATOR) {
res = bookmark_fill_completion(store, suffix + 1);
} else {
- res = history_fill_completion(store, HISTORY_URL, suffix);
+ res = history_fill_completion(store, HISTORY_URL, suffix);
}
sort = false;
} else if (type == VB_INPUT_COMMAND) {