gpt4 book ai didi

javascript - Jupyter:将单元格移动到笔记本顶部

转载 作者:行者123 更新时间:2023-12-03 17:20:19 34 4
gpt4 key购买 nike

我经常在笔记本读到一半时意识到我忘记了一个导入,我想把它移到笔记本的顶部(我试图保留我的大部分导入)。有没有办法给 ~/.jupyter/custom/custom.js 添加键盘快捷键?将一个单元格移动到笔记本的顶部?

目前,我通过剪切单元格、滚动到笔记本顶部、粘贴并向下滚动到我所在的位置来做到这一点(经常在回来的路上失去我的位置)。

下面是来自 fastai forums 的一些代码完成不同的任务:进入正在运行的单元:

Jupyter.keyboard_manager.command_shortcuts.add_shortcut('CMD-I', {
help : 'Go to Running cell',
help_index : 'zz',
handler : function (event) {
setTimeout(function() {
// Find running cell and click the first one
if ($('.running').length > 0) {
//alert("found running cell");
$('.running')[0].scrollIntoView();
}}, 250);
return false;
}
});

screenshot of problem

最佳答案

它有部分记录;但是,您必须了解一点 JavaScript 才能创建键盘快捷键。
如您所知,编辑 custom.js 绑定(bind)键盘快捷键,如mentioned in the documentation (如果 Action 不是内置的,则必须使用第二种方法)
对于文档,read the source code (在线或 site-packages/notebook/static/notebook/js/*.js 如果您在本地安装了 jupyter)。特别是,actions.js包含示例绑定(bind)和 notebook.js包含可以在笔记本上调用的函数。
这是一个例子。它有修改jupyter剪贴板的缺点。为避免这种情况,您可以查看 notebook.move_cell_down 的源代码函数看看它是如何实现的,并相应地修改它。

Jupyter.keyboard_manager.command_shortcuts.add_shortcut('cmdtrl-I', {
help : 'Move cell to first in notebook',
handler : function (env) {
var index = env.notebook.get_selected_index();
env.notebook.cut_cell();
env.notebook.select(0);
env.notebook.paste_cell_above();
env.notebook.select(index);
}
});

关于javascript - Jupyter:将单元格移动到笔记本顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53070389/

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