如何在Visual Studio代码中为Jupyter笔记本禁用Enter键自动完成功能

时间:2019-12-11 19:01:09

标签: python visual-studio-code jupyter-notebook

对于Visual Studio Code中的普通编辑器窗口,我可以使用以下工作区设置禁用Enter键自动完成功能:

"editor.acceptSuggestionOnEnter": "off"

但是,这不会禁用Visual Studio Code中Jupyter笔记本的Enter键自动完成功能。我应该使用哪个工作区设置?

我尝试过:

"jupyter.acceptSuggestionOnEnter": "off"

但这没用。

作为示例,我输入:

import matplotlib.pyplot as plt,然后按Enter

这会导致Visual Studio代码将此更改为:

import matplotlib.pyplot as pyplot

这真令人讨厌。

1 个答案:

答案 0 :(得分:1)

抱歉,笔记本编辑器当前不支持此功能。笔记本编辑器目前无法读取VS代码的所有编辑器设置。

您可以将其作为错误记录在python扩展上,这里: https://github.com/microsoft/vscode-python/issues