summaryrefslogtreecommitdiff
path: root/src/completion.c
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2013-08-01 18:52:10 +0200
committerDaniel Carl <danielcarl@gmx.de>2013-08-01 18:52:10 +0200
commit6ec433fe04b3c61a6c9954143bd349944380d760 (patch)
treee780f940793808ed3c48d76e4d9602121307b27c /src/completion.c
parent841e8fcab75509ef511d6501bf303a8037454277 (diff)
Changed sort order in bookmark completion.
Now the latest added items of the bookmarks file are shown first, so it's similar to the history completion.
Diffstat (limited to 'src/completion.c')
-rw-r--r--src/completion.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/completion.c b/src/completion.c
index 9f54f57..f4d98ee 100644
--- a/src/completion.c
+++ b/src/completion.c
@@ -82,7 +82,7 @@ gboolean completion_complete(gboolean back)
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) {