mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 00:37:58 +01:00
added counter to web site
This commit is contained in:
@@ -652,9 +652,9 @@ var g_mappings = [/*{{{*/
|
|||||||
["I"],
|
["I"],
|
||||||
"Disable vimperator keys",
|
"Disable vimperator keys",
|
||||||
"Starts an 'ignorekeys' mode, where all keys except <code class=mapping><Esc></code> are passed to the next event handler.<br>"+
|
"Starts an 'ignorekeys' mode, where all keys except <code class=mapping><Esc></code> are passed 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." +
|
"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>"+
|
||||||
"<code class=mapping><Esc></code> in this mode to the webpage, prepend it with <code class=mapping><C-v></code>.",
|
"in this mode to the webpage, prepend it with <code class=mapping><C-v></code>.",
|
||||||
function(count) { addMode(MODE_ESCAPE_ALL_KEYS); echo("Vimperator keys disabled. Press <Esc> to reenable.");}
|
function(count) { addMode(MODE_ESCAPE_ALL_KEYS); echo("Vimperator keys disabled. Press <Esc> to reenable.");}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ var g_settings = [/*{{{*/
|
|||||||
[
|
[
|
||||||
["focusedhintstyle", "fhs"],
|
["focusedhintstyle", "fhs"],
|
||||||
"CSS specification of focused hints appearance",
|
"CSS specification of focused hints appearance",
|
||||||
"The font (and size) is inherited from Firefox's prefences for Monospaced fonts. Change them in the GUI prefernce panel if necessary.",
|
null,
|
||||||
function(value) { set_pref("focusedhintstyle", value); },
|
function(value) { set_pref("focusedhintstyle", value); },
|
||||||
function() { return get_pref("focusedhintstyle"); },
|
function() { return get_pref("focusedhintstyle"); },
|
||||||
"string",
|
"string",
|
||||||
@@ -132,7 +132,7 @@ var g_settings = [/*{{{*/
|
|||||||
[
|
[
|
||||||
["hintstyle", "hs"],
|
["hintstyle", "hs"],
|
||||||
"CSS specification of unfocused hints appearance",
|
"CSS specification of unfocused hints appearance",
|
||||||
"The font (and size) is inherited from Firefox's prefences for Monospaced fonts. Change them in the GUI prefernce panel if necessary.",
|
null,
|
||||||
function(value) { set_pref("hintstyle", value); },
|
function(value) { set_pref("hintstyle", value); },
|
||||||
function() { return get_pref("hintstyle"); },
|
function() { return get_pref("hintstyle"); },
|
||||||
"string",
|
"string",
|
||||||
|
|||||||
@@ -12,9 +12,7 @@ WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|||||||
for the specific language governing rights and limitations under the
|
for the specific language governing rights and limitations under the
|
||||||
License.
|
License.
|
||||||
|
|
||||||
The Initial Developer of the Original Code is Shawn Betts.
|
(c) 2006-2007 Martin Stubenschrott
|
||||||
Portions created by the Initial Developer are Copyright (C) 2004
|
|
||||||
by the Initial Developer. All Rights Reserved.
|
|
||||||
|
|
||||||
Alternatively, the contents of this file may be used under the terms of
|
Alternatively, the contents of this file may be used under the terms of
|
||||||
either the GNU General Public License Version 2 or later (the "GPL"), or
|
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||||
@@ -46,8 +44,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
<script type="application/x-javascript" src="hints.js"/>
|
<script type="application/x-javascript" src="hints.js"/>
|
||||||
|
|
||||||
<window id="main-window">
|
<window id="main-window">
|
||||||
<toolbar id="vimperator-toolbar" hidden="false" align="center" fullscreentoolbar="true"
|
<toolbar id="vimperator-toolbar" hidden="false" align="center" fullscreentoolbar="true">
|
||||||
onblur="onBlur();">
|
|
||||||
<vbox id="vim-container" flex="1" hidden="false">
|
<vbox id="vim-container" flex="1" hidden="false">
|
||||||
<listbox id="vim-preview_window" class="plain" rows="10" flex="1" hidden="true"
|
<listbox id="vim-preview_window" class="plain" rows="10" flex="1" hidden="true"
|
||||||
ondblclick="preview_window_select(event);" onclick="preview_window_select(event);" onkeydown="preview_window_select(event);"
|
ondblclick="preview_window_select(event);" onclick="preview_window_select(event);" onkeydown="preview_window_select(event);"
|
||||||
@@ -72,7 +69,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
</hbox>
|
</hbox>
|
||||||
|
|
||||||
<listbox id="vim-completion" class="plain" rows="1" flex="1" hidden="true"
|
<listbox id="vim-completion" class="plain" rows="1" flex="1" hidden="true"
|
||||||
style="font-family: monospace; -moz-user-focus:ignore; -moz-user-select:ignore; overflow:-moz-scrollbars-none;">
|
style="font-family: monospace; -moz-user-focus:ignore; -moz-user-select:normal; overflow:-moz-scrollbars-none;">
|
||||||
<listcols>
|
<listcols>
|
||||||
<listcol flex="1" width="50%"/>
|
<listcol flex="1" width="50%"/>
|
||||||
<listcol flex="1" width="50%"/>
|
<listcol flex="1" width="50%"/>
|
||||||
@@ -88,7 +85,6 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
<keyset id="mainKeyset">
|
<keyset id="mainKeyset">
|
||||||
<key id="key_open_vimbar" key=":" oncommand="openVimperatorBar();" modifiers=""/>
|
<key id="key_open_vimbar" key=":" oncommand="openVimperatorBar();" modifiers=""/>
|
||||||
<key id="key_stop" keycode="VK_ESCAPE" oncommand="onEscape();"/>
|
<key id="key_stop" keycode="VK_ESCAPE" oncommand="onEscape();"/>
|
||||||
<!--key id="key_cancel" keycode="[" modifiers="control" oncommand="onEscape();"/-->
|
|
||||||
|
|
||||||
<!-- other keys are handled inside vimperator.js event loop -->
|
<!-- other keys are handled inside vimperator.js event loop -->
|
||||||
</keyset>
|
</keyset>
|
||||||
|
|||||||
Reference in New Issue
Block a user