1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 20:07:59 +01:00

fixed :dl command

This commit is contained in:
Martin Stubenschrott
2007-05-04 22:48:13 +00:00
parent c6d67fe8fe
commit 2754fdc37a
4 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ Developers:
Patches:
* Muthu Kannan (ctrl-v support)
* Lars Kindler (:buffer(s) functionality)
* Lee Hinman (:cd command) -> not yet commited
* Lee Hinman (:open ./.. support)
* Bart Trojanowski (Makefile)
* Doug Kearns (vimperator.vim)
</pre>

View File

@@ -1,6 +1,7 @@
<pre>
2007-05-02:
* version ???
* added vimparator.vim for .vimperatorrc syntax highlighting in the XPI (by Doug Kearns)
* Added keyword support for bookmarks to the :[tab]open commands
* many small bug fixes

View File

@@ -134,7 +134,7 @@ var g_commands = [/*{{{*/
["downloads", "dl"],
["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.",
function() { openURLsInNewTab("chrome://mozapps/content/downloads/downloads.xul", true); },
null

View File

@@ -409,6 +409,8 @@ function get_search_completions(filter)/*{{{*/
function get_history_completions(filter)/*{{{*/
{
var history = document.getElementById("hiddenHistoryTree");
if (!history)
return [];
// build our history cache
if (history_loaded == false)