From 22c65025ed5251d6f2733ae728bdeda5eeb7756e Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 12 Jan 2009 20:46:31 +1100 Subject: [PATCH] Don't anchor :back/:forward completions. --- vimperator/content/bookmarks.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vimperator/content/bookmarks.js b/vimperator/content/bookmarks.js index 84bd3ca1..4b7ca786 100644 --- a/vimperator/content/bookmarks.js +++ b/vimperator/content/bookmarks.js @@ -734,9 +734,9 @@ function History() //{{{ { let sh = window.getWebNavigation().sessionHistory; + context.anchor = false; context.completions = [sh.getEntryAtIndex(i, false) for (i in util.range(sh.index, 0, true))]; context.keys = { text: function (item) item.URI.spec, description: "title" }; - liberator.dump(context.items); }, count: true, literal: 0 @@ -780,6 +780,7 @@ function History() //{{{ { let sh = window.getWebNavigation().sessionHistory; + context.anchor = false; context.completions = [sh.getEntryAtIndex(i, false) for (i in util.range(sh.index + 1, sh.count))]; context.keys = { text: function (item) item.URI.spec, description: "title" }; },