1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-15 23:25:47 +01:00

provide defaults for some optional config properties

This commit is contained in:
Doug Kearns
2008-11-02 13:59:58 +00:00
parent 31a200c0c0
commit 441008c624
9 changed files with 32 additions and 23 deletions

View File

@@ -240,7 +240,7 @@ function Bookmarks() //{{{
////////////////////// MAPPINGS ////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
var myModes = config.browserModes || [modes.NORMAL];
var myModes = config.browserModes;
mappings.add(myModes, ["a"],
"Open a prompt to bookmark the current URL",
@@ -595,7 +595,7 @@ function History() //{{{
////////////////////// MAPPINGS ////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
var myModes = config.browserModes || [modes.NORMAL];
var myModes = config.browserModes;
mappings.add(myModes,
["<C-o>"], "Go to an older position in the jump list",
@@ -855,7 +855,7 @@ function QuickMarks() //{{{
////////////////////// MAPPINGS ////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////{{{
var myModes = config.browserModes || [modes.NORMAL];
var myModes = config.browserModes;
mappings.add(myModes,
["go"], "Jump to a QuickMark",