gpt4 book ai didi

ipython - 如何将键盘快捷键永久添加到 Jupyter (ipython) 笔记本?

转载 作者:行者123 更新时间:2023-12-04 01:41:46 25 4
gpt4 key购买 nike

我有以下快捷方式配置,在 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com