2

如何在 Firefox 中使用 vimperator 打开下载窗口。有没有查看当前下载的关键地图?

4

2 回答 2

3

你可以使用命令 :downloads

于 2013-10-10T21:37:31.093 回答
1

有一个命令:downloads,但它现在不起作用。此错误将在 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

于 2014-01-30T13:10:27.223 回答