如何在firefox中使用vimperator打开下载窗口

时间:2013-06-20 08:42:41

标签: firefox vimperator

如何在firefox中使用vimperator打开下载窗口。是否有键映射来查看当前下载量?

2 个答案:

答案 0 :(得分:3)

您可以使用命令:downloads

答案 1 :(得分:1)

有一个命令:downloads,但它现在无法正常工作。此bug将在下一版本的Vimperator中修复(当前版本为3.8.1)。

在此期间,您可以将以下内容添加到.vimperatorrc(基本上,与应用于官方Vimperator树的补丁完全相同)):

js <<EOF
    commands._exCommands = commands._exCommands.filter(function (cmd) !cmd.hasName("downloads"));
    commands.add(["downl[oads]", "dl"],
        "Show progress of current downloads (fixed)",
        function () {
            liberator.open("chrome://browser/content/downloads/contentAreaDownloadsView.xul",
                { from: "downloads"});
        },
        { argCount: "0" },
        true);
EOF

(别忘了重新启动Firefox或source ~/.vimperatorrc