mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 18:27:57 +01:00
added contact section to homepage
This commit is contained in:
5
TODO
5
TODO
@@ -7,7 +7,9 @@ BUGS:
|
|||||||
- hints are not placed correctly when zoom is used
|
- hints are not placed correctly when zoom is used
|
||||||
- flashing frame is not perfect
|
- flashing frame is not perfect
|
||||||
- The RSS feed button in the address bar no longer works.
|
- The RSS feed button in the address bar no longer works.
|
||||||
|
- hints on digg.com are behind text
|
||||||
- autoupdate does not work
|
- autoupdate does not work
|
||||||
|
- multiple windows to not work at all, so :q will close the whole browser session, even when there are other windows which has tabs
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
9 marks of a Location (also should work with directories), [m a-zA-Z] to set it, [' a-zA-Z] to go there
|
9 marks of a Location (also should work with directories), [m a-zA-Z] to set it, [' a-zA-Z] to go there
|
||||||
@@ -48,4 +50,7 @@ FEATURES:
|
|||||||
3 Splitting Windows with [:sp :vsp ctrl-w,s ctrl-w,v] and closing with [ctrl-w,q], moving with [ctrl-w,w or tab]
|
3 Splitting Windows with [:sp :vsp ctrl-w,s ctrl-w,v] and closing with [ctrl-w,q], moving with [ctrl-w,w or tab]
|
||||||
have a look into the split browser extension
|
have a look into the split browser extension
|
||||||
3 :set should also set about:config options (with autocomplete)
|
3 :set should also set about:config options (with autocomplete)
|
||||||
|
|
||||||
|
RANDOM IDEAS:
|
||||||
|
* numbered tabs
|
||||||
</pre>
|
</pre>
|
||||||
|
|||||||
@@ -251,7 +251,7 @@ var g_commands = [/*{{{*/
|
|||||||
null
|
null
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
["tabopen", "t", "to", "topen", "tabedit"],
|
["tabopen", "t", "to", "topen", "tabedit", "tabnew"],
|
||||||
"Open one or more URLs in a new tab",
|
"Open one or more URLs in a new tab",
|
||||||
"Like <code class=command>:open</code> but open URLs in a new tab. If used with !, the 'tabopen' value of the 'activate' setting is negated.",
|
"Like <code class=command>:open</code> but open URLs in a new tab. If used with !, the 'tabopen' value of the 'activate' setting is negated.",
|
||||||
function (args, special) { if (args.length > 0) openURLsInNewTab(args, !special); else openURLsInNewTab("about:blank", true); },
|
function (args, special) { if (args.length > 0) openURLsInNewTab(args, !special); else openURLsInNewTab("about:blank", true); },
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ var g_settings = [/*{{{*/
|
|||||||
function(value) { set_pref("focusedhintstyle", value); },
|
function(value) { set_pref("focusedhintstyle", value); },
|
||||||
function() { return get_pref("focusedhintstyle"); },
|
function() { return get_pref("focusedhintstyle"); },
|
||||||
"string",
|
"string",
|
||||||
"z-index:500;font-family:monospace;font-size:12;color:ButtonText;background-color:ButtonShadow;border-color:ButtonShadow;border-width:1px;border-style:solid;padding:0px 1px 0px 1px;position:absolute;",
|
"z-index:5000;font-family:monospace;font-size:12;color:ButtonText;background-color:ButtonShadow;border-color:ButtonShadow;border-width:1px;border-style:solid;padding:0px 1px 0px 1px;position:absolute;",
|
||||||
null,
|
null,
|
||||||
null
|
null
|
||||||
],
|
],
|
||||||
@@ -136,7 +136,7 @@ var g_settings = [/*{{{*/
|
|||||||
function(value) { set_pref("hintstyle", value); },
|
function(value) { set_pref("hintstyle", value); },
|
||||||
function() { return get_pref("hintstyle"); },
|
function() { return get_pref("hintstyle"); },
|
||||||
"string",
|
"string",
|
||||||
"z-index:500;font-family:monospace;font-size:12;color:black;background-color:yellow;border-color:ButtonShadow;border-width:0px;border-style:solid;padding:0px 0px 0px 0px;position:absolute;",
|
"z-index:5000;font-family:monospace;font-size:12;color:black;background-color:yellow;border-color:ButtonShadow;border-width:0px;border-style:solid;padding:0px 1px 0px 1px;position:absolute;",
|
||||||
null,
|
null,
|
||||||
null
|
null
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user