1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 21:34:17 +01:00

winopen support

This commit is contained in:
Martin Stubenschrott
2007-08-01 01:17:45 +00:00
parent f12781220b
commit 0d8140cedc
6 changed files with 81 additions and 41 deletions

View File

@@ -747,11 +747,11 @@ function QuickMarks() //{{{
}
}
this.jumpTo = function(mark, newtab)
this.jumpTo = function(mark, where)
{
var url = marks[mark];
if (url)
vimperator.open(url, newtab ? vimperator.NEW_TAB : vimperator.CURRENT_TAB);
vimperator.open(url, where);
else
vimperator.echoerr("E20: QuickMark not set");
}