VS 代码错误:找不到命令'extension.executeAREPLBlock'(使用 Mac)



我曾经能够使用cmd + enter"即使光标位于代码行中间的某处,也可以跳到下一行代码。

当我使用该组合键时,我被提示command 'extension.executeAREPLBlock' not found错误。

我确实看到了其他几篇关于Stack Overflow的文章,但是它们比我写的要复杂得多。

有人能帮我解决这个问题吗?我将不胜感激。

这是我的设置。

{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.autoSave": "afterDelay",
"workbench.iconTheme": "eq-material-theme-icons",
"files.associations": {
"*.py": "python"
},
"[python]": {
"editor.wordBasedSuggestions": false
},
"vsintellicode.modelDownloadPath": "",
"editor.accessibilitySupport": "off",
"code-runner.showExecutionMessage": false,
"terminal.integrated.automationShell.windows": "",
"editor.fontLigatures": true,
"editor.fontFamily": "Cascadia Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,}

它看起来像python的"AREPL"扩展名可能与"cmd + enter"快捷键,因为扩展使用相同的键组合。

恢复"cmd + enter"打开键盘快捷键("cmd + shift + "),然后搜索"偏好设置:打开键盘快捷键"

点击"首选项:打开键盘快捷键"然后在搜索栏中输入以下内容(,包括引号)): "cmd + enter"您应该会看到几个选项,包括"AREPL:执行当前代码块"。

单击此选项左侧的铅笔图标,并输入一个新的键盘快捷方式,该快捷方式不是"cmd+enter"。例如,也许可以输入这个组合键(输入实际的键,不要像我在这里那样输入键的缩写):cmd + ctrl + enter。然后按回车。

现在您已经为AREPL提供了一个不同的键盘快捷键,希望是之前的"cmd + enter"功能;

AREPL for Python"扩展为我引起了冲突。

我只是卸载了扩展,它工作正常。

相关内容

  • 没有找到相关文章