我有以下快捷方式配置,在 Jupiter Notebook 的单元格中运行后即可使用:

%%javascript


IPython.keyboard_manager.command_shortcuts.add_shortcut('ctrl-q', {
    help: 'Clear all output',               // This text will show up on the help page (CTRL-M h or ESC h)
    handler: function (event) {             // Function that gets invoked
        if (IPython.notebook.mode == 'command') {
            IPython.notebook.clear_all_output();
            return false;
        }
        return true;
    }
  });

如何设置 Jupiter Notebook 以在启动时自动进行此初始化?

我尝试将相同的代码(没有 %%javascript )添加到 C:\Users\<username>\.ipython\profile_default\static\custom\custom.js 但它没有用。

我只有一个配置文件,使用 ipython profile create 、Python 3.3、Windows 7 创建。

提前致谢。

最佳答案

custom.js 是这段代码的正确位置。尝试按如下方式包装它(不要忘记块结束前的 return true):

$([IPython.events]).on("app_initialized.NotebookApp", function () {
    <your code>

    return true;
});

关于ipython - 如何将键盘快捷键永久添加到 Jupyter (ipython) 笔记本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32046655/

10-16 16:18