赞
踩
进入到 自己开发环境 Python 或者 Anaocnda 的安装目录,然后进入如下文件夹 Lib\site-packages\notebook\static\notebook\js ,找到 main.min.js 文件 ,用 记事本 打开。
按 ctrl + F 搜索 "We put it above the code" ,找到如下位置。
修改完的代码,如下:
- this.complete.css('left', left + 'px');
- this.complete.css('top', top + 'px');
-
- // 我改写的避免 hinland 一直在干扰我;设置的0.9的透明度
- this.complete.css('opacity', '0.9');
-
- // Clear and fill the list.
- this.sel.text('');
- this.build_gui_list(this.raw_result);
- return true;
- };
-
- Completer.prototype.insert = function (completion) {
- this.editor.replaceRange(completion.str, completion.from, completion.to);
- };
-
- Completer.prototype.build_gui_list = function (completions) {
- var MAXIMUM_GUI_LIST_LENGTH = 1000;
- for (var i = 0; i < completions.length && i < MAXIMUM_GUI_LIST_LENGTH; ++i) {
- var opt = $('<option/>').text(completions[i].str).addClass(completions[i].type);
- this.sel.append(opt);
- }
- // 建议注释掉,避免 每输入一次选中一次
- //this.sel.children().first().attr('selected', 'true');
-
-
- this.sel.scrollTop(0);
详情请见:
jupyter notebook 的 hinterland 插件 设置 代码提示但是默认不选中_空流淡幽殇的博客-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。