Shift + Enter does not create an Interactive while the kernel as Deno is Jupyter #17293
Unanswered
cametan
asked this question in
Questions and Answers
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
I'm trying using Deno(not Python) as Jupyter kernel installed, with the Jupyter extension for Visual Studio Code.
The definition of keybinding, Shift + Enter, or jupyter.execSelectionInteractive, of Jupyter extension for Visual Studio Code is this:
editorTextFocuss && isWorkpcaseTrusted && jupyter.ownsSelection && !findInputForcussed && !isCompositeNotebook && !notebookEditorFocused && !replaceInputFocussed && editorLangID == 'python'It looks like that Python is a sort of hard-coding.
Then, I was trying to set-up keybinding.json as USER:
[ // 1. Trying to toggle-off Python binding { "key": "shift+enter", "command": "-jupyter.execSelectionInteractive", "when": "editorTextFocus && isWorkspaceTrusted && jupyter.ownsSelection && !findInputFocus && !isCompositeNotebook && !notebookEditorFocused && !replaceInputFocus && editorLangId == 'python'" }, // 2. Trying to shadow the default key-binding { "key": "shift+enter", "command": "jupyter.execSelectionInteractive", "when": "editorTextFocus && isWorkspaceTrusted" } ]However, I do not know how to say but, Shift + Enter is too strong to be cancelled or shadowed to open Interactive of Jupyter; in other words, it just acts like a "Delete" key. Selecting codes, Shift + Enter just deletes all codes written, on JavaScript file.
Could anybody know how to bind Shift + Enter and JupyterSelectionInteractive, using Deno?
Thanks, regards.
Beta Was this translation helpful? Give feedback.
All reactions