From dd14513fa22928333f5fbce63004ccffb3624070 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 17 Aug 2007 16:20:48 +0000 Subject: [PATCH] fix broken :tabmove wrapping --- chrome/content/vimperator/tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/vimperator/tabs.js b/chrome/content/vimperator/tabs.js index cefb81e4..978b21fb 100644 --- a/chrome/content/vimperator/tabs.js +++ b/chrome/content/vimperator/tabs.js @@ -142,7 +142,7 @@ function Tabs() //{{{ if (spec === "") spec = "$"; // if not specified, move to the last tab -> XXX: move to ex handling? - var index = indexFromSpec(spec, false); // XXX: really no wrap? + var index = indexFromSpec(spec, wrap); getBrowser().moveTabTo(tab, index); }