From 8eae1939277e33cfa81618c24901765ed4dfeadd Mon Sep 17 00:00:00 2001 From: John Foerch Date: Sun, 2 Dec 2012 10:35:53 -0500 Subject: [PATCH] history.js: ordering --- modules/history.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/history.js b/modules/history.js index 77eefd1..fd20e6a 100644 --- a/modules/history.js +++ b/modules/history.js @@ -7,8 +7,8 @@ * COPYING file. **/ -define_keywords("$use_webjumps", "$use_history", "$use_bookmarks", - "$match_required", "$sort_order"); +define_keywords("$use_history", "$use_bookmarks", "$match_required", + "$sort_order"); function history_completer () { keywords(arguments, $sort_order = "visitcount_descending"); var use_history = arguments.$use_history; @@ -44,6 +44,7 @@ function history_completer () { } } +define_keywords("$use_webjumps"); function url_completer () { keywords(arguments, $sort_order = "visitcount_descending"); var use_webjumps = arguments.$use_webjumps; -- 2.11.4.GIT