1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 08:28:01 +01:00

show info about tabs loaded in background; also allow ctrl- prefixed keys again

This commit is contained in:
Martin Stubenschrott
2008-06-24 20:36:06 +00:00
parent 89bbff60fd
commit 7aa055d9d3
7 changed files with 30 additions and 26 deletions

View File

@@ -226,11 +226,10 @@ liberator.Editor = function () //{{{
addMotionMap("y"); // yank
// insert mode mappings
liberator.mappings.add([liberator.modes.INSERT],
["<C-Left>", "<C-Right>", "<C-Home>", "<C-End>", "<C-S-Home>", "<C-S-End>", "<C-BS"],
"Keys are passed to " + liberator.config.hostApplication,
function () { return true; },
{ flags: liberator.Mappings.flags.ALLOW_EVENT_ROUTING });
liberator.mappings.add(modes,
["<C-o>", "<C-i>", "<C-f>", "<C-g>", "<C-n>"],
"Ignore certain " + liberator.config.hostApplication + " key bindings",
function () { /*liberator.beep();*/ });
liberator.mappings.add(modes,
["<C-w>"], "Delete previous word",