mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-04 10:55:46 +01:00
small help refinements to help remember the ctrl-q setting by having the word "quit" in the help
This commit is contained in:
@@ -357,8 +357,8 @@ function Mappings() //{{{
|
|||||||
addDefaultMap(new Map(anymode, ["<C-q>"],
|
addDefaultMap(new Map(anymode, ["<C-q>"],
|
||||||
function() { vimperator.modes.passAllKeys = true; },
|
function() { vimperator.modes.passAllKeys = true; },
|
||||||
{
|
{
|
||||||
short_help: "Disable Vimperator keys",
|
short_help: "Temporarily quit Vimperator mode",
|
||||||
help: "Starts an 'ignorekeys' mode, where all keys except <code class=\"mapping\"><Esc></code> are passed to the next event handler.<br/>" +
|
help: "Disable all Vimperator keys except <code class=\"mapping\"><Esc></code> and pass them to the next event handler.<br/>" +
|
||||||
"This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore.<br/>" +
|
"This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore.<br/>" +
|
||||||
"To exit this mode, press <code class=\"mapping\"><Esc></code>. If you also need to pass <code class=\"mapping\"><Esc></code>" +
|
"To exit this mode, press <code class=\"mapping\"><Esc></code>. If you also need to pass <code class=\"mapping\"><Esc></code>" +
|
||||||
"in this mode to the web page, prepend it with <code class=\"mapping\"><C-v></code>."
|
"in this mode to the web page, prepend it with <code class=\"mapping\"><C-v></code>."
|
||||||
@@ -367,10 +367,10 @@ function Mappings() //{{{
|
|||||||
addDefaultMap(new Map(anymode, ["<C-v>"],
|
addDefaultMap(new Map(anymode, ["<C-v>"],
|
||||||
function() { vimperator.modes.passNextKey = true; },
|
function() { vimperator.modes.passNextKey = true; },
|
||||||
{
|
{
|
||||||
short_help: "Escape next key",
|
short_help: "Pass through next key",
|
||||||
help: "If you need to pass a certain key to a JavaScript form field or another extension prefix the key with <code class=\"mapping\"><C-v></code>.<br/>" +
|
help: "If you need to pass a certain key to a JavaScript form field or another extension prefix the key with <code class=\"mapping\"><C-v></code>.<br/>" +
|
||||||
"Also works to unshadow Firefox shortcuts like <code class=\"mapping\"><C-o></code> which are otherwise hidden in Vimperator.<br/>" +
|
"Also works to unshadow Firefox shortcuts like <code class=\"mapping\"><C-o></code> which are otherwise hidden in Vimperator.<br/>" +
|
||||||
"When in 'ignorekeys' mode (activated by <code class=\"mapping\"><C-q></code>), <code class=\"mapping\"><C-v></code> will pass the next key to Vimperator instead of the web page."
|
"When Vimperator mode is temporarily disabled with <code class=\"mapping\"><C-q></code>, <code class=\"mapping\"><C-v></code> will pass the next key to Vimperator instead of the web page."
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
addDefaultMap(new Map([vimperator.modes.NORMAL], ["<C-c>"],
|
addDefaultMap(new Map([vimperator.modes.NORMAL], ["<C-c>"],
|
||||||
@@ -465,8 +465,7 @@ function Mappings() //{{{
|
|||||||
vimperator.beep();
|
vimperator.beep();
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
short_help: "Focus last used input field",
|
short_help: "Focus last used input field"
|
||||||
help: "TODO"
|
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
addDefaultMap(new Map([vimperator.modes.NORMAL], ["go"],
|
addDefaultMap(new Map([vimperator.modes.NORMAL], ["go"],
|
||||||
|
|||||||
Reference in New Issue
Block a user