VS code中“shift+enter”快捷键在使用交互窗口时不起作用的解决办法。设置,找到“键盘快捷方式”,右上角“打开键盘快捷方式”,然后进入keybindings.json。在配置文件中,插入:
{ "key": "shift+enter", "command": "jupyter.execSelectionInteractive", "when": "editorTextFocus"
}
VS code中“shift+enter”快捷键在使用交互窗口时不起作用的解决办法。设置,找到“键盘快捷方式”,右上角“打开键盘快捷方式”,然后进入keybindings.json。在配置文件中,插入:
{ "key": "shift+enter", "command": "jupyter.execSelectionInteractive", "when": "editorTextFocus"
}