Skip to content

Commit 593bb1a

Browse files
committed
Merge pull request #17 from zklinger/issue_11
Fix 'gH' command to work with multiple home pages (issue #11)
2 parents d8f0d72 + 479ef3d commit 593bb1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/content/browser.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,7 @@ const Browser = Module("browser", {
169169
mappings.add([modes.NORMAL], ["gH"],
170170
"Open homepage in a new tab",
171171
function () {
172-
let homepages = gHomeButton.getHomePage();
173-
homepages = homepages.replace(/\|/g, options["urlseparator"] || ", "); // we use a different url seperator than Firefox
172+
let homepages = gHomeButton.getHomePage().split('|');
174173
liberator.open(homepages, { from: "homepage", where: liberator.NEW_TAB });
175174
});
176175

vimperator/NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
201x-00-00
22
* Version 3.8.3
33
* Push minVersion to Firefox25, as we have some problems on older Firefoxs regarding search
4+
* Make 'gH' command work with multiple home pages
45

56
2014-02-14: A Valentine's gift
67
* Version 3.8.2

0 commit comments

Comments
 (0)