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:
3
AUTHORS
3
AUTHORS
@@ -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>
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user