mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 23:27:58 +01:00
fixed :dl command
This commit is contained in:
3
AUTHORS
3
AUTHORS
@@ -8,6 +8,7 @@ Developers:
|
|||||||
Patches:
|
Patches:
|
||||||
* Muthu Kannan (ctrl-v support)
|
* Muthu Kannan (ctrl-v support)
|
||||||
* Lars Kindler (:buffer(s) functionality)
|
* Lars Kindler (:buffer(s) functionality)
|
||||||
* Lee Hinman (:cd command) -> not yet commited
|
* Lee Hinman (:open ./.. support)
|
||||||
* Bart Trojanowski (Makefile)
|
* Bart Trojanowski (Makefile)
|
||||||
|
* Doug Kearns (vimperator.vim)
|
||||||
</pre>
|
</pre>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<pre>
|
<pre>
|
||||||
2007-05-02:
|
2007-05-02:
|
||||||
* version ???
|
* version ???
|
||||||
|
* added vimparator.vim for .vimperatorrc syntax highlighting in the XPI (by Doug Kearns)
|
||||||
* Added keyword support for bookmarks to the :[tab]open commands
|
* Added keyword support for bookmarks to the :[tab]open commands
|
||||||
* many small bug fixes
|
* many small bug fixes
|
||||||
|
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ var g_commands = [/*{{{*/
|
|||||||
["downloads", "dl"],
|
["downloads", "dl"],
|
||||||
["downloads"],
|
["downloads"],
|
||||||
"Show progress of current downloads",
|
"Show progress of current downloads",
|
||||||
"Open the original Firefox download dialog in a new tab.",
|
"Open the original Firefox download dialog in a new tab.<br>"+
|
||||||
"Here, downloads can be paused, canceled and resumed.",
|
"Here, downloads can be paused, canceled and resumed.",
|
||||||
function() { openURLsInNewTab("chrome://mozapps/content/downloads/downloads.xul", true); },
|
function() { openURLsInNewTab("chrome://mozapps/content/downloads/downloads.xul", true); },
|
||||||
null
|
null
|
||||||
|
|||||||
@@ -409,6 +409,8 @@ function get_search_completions(filter)/*{{{*/
|
|||||||
function get_history_completions(filter)/*{{{*/
|
function get_history_completions(filter)/*{{{*/
|
||||||
{
|
{
|
||||||
var history = document.getElementById("hiddenHistoryTree");
|
var history = document.getElementById("hiddenHistoryTree");
|
||||||
|
if (!history)
|
||||||
|
return [];
|
||||||
|
|
||||||
// build our history cache
|
// build our history cache
|
||||||
if (history_loaded == false)
|
if (history_loaded == false)
|
||||||
|
|||||||
Reference in New Issue
Block a user