Skip to content

Commit

Permalink
Merge pull request vimperator#17 from zklinger/issue_11
Browse files Browse the repository at this point in the history
Fix 'gH' command to work with multiple home pages (issue vimperator#11)
  • Loading branch information
maxauthority committed Jul 28, 2014
2 parents d8f0d72 + 479ef3d commit 593bb1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions common/content/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ const Browser = Module("browser", {
mappings.add([modes.NORMAL], ["gH"],
"Open homepage in a new tab",
function () {
let homepages = gHomeButton.getHomePage();
homepages = homepages.replace(/\|/g, options["urlseparator"] || ", "); // we use a different url seperator than Firefox
let homepages = gHomeButton.getHomePage().split('|');
liberator.open(homepages, { from: "homepage", where: liberator.NEW_TAB });
});

Expand Down
1 change: 1 addition & 0 deletions vimperator/NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
201x-00-00
* Version 3.8.3
* Push minVersion to Firefox25, as we have some problems on older Firefoxs regarding search
* Make 'gH' command work with multiple home pages

2014-02-14: A Valentine's gift
* Version 3.8.2
Expand Down

0 comments on commit 593bb1a

Please sign in to comment.