I use Popos and I usually get any portion of my screen to the clipboard using ctrl + shift + s on other applications but not on vscode. Anyone knows how to do this?
Related
I installed the Vim extension from vs code marketplace just today to use it. I wanted to use Vim's shorctuts for modifying the code. I was unaware that using Vim would disable me to use VS code's shortcuts like Ctrl + K , Ctrl + O which opens a folder. How can I solve this issue?
Usually, when working in VSCode, I can attach a file to REPL (Ctrl + Shift + P > Attach to session) and then any code I write can be executed by running the file by going Ctrl + Shift + P > Julia: Execute ...
This way, I can view the variables just by typing them out in the REPL among other things.
However when I try code in a Juptyter notebook, this doesnt seem to work. Is there any way of starting a terminal that shares the variables inside the notebook?
No, notebook kernels use different logic than the REPL process. You can access the workspace, but code execution is only possible in the notebook itself. There are no plans to change this behaviour currently.
I'm using the Jupyter Extension from Microsoft in VsCode
Using Ctrl + Shift + P in VsCode and
I would like to modify the blank notebook so it has some pre written cells like
I googled but haven't found anything
I suggest you install an extension
File Templates
So today my ipynb files were now opening in the native notebook experience and I want to revert back to as it was before. I tried installing previous versions of the jupyter extension but it's still opening my ipynb files in the native experience only. Any idea how I can accomplish that?
open your settings JSON (press F1 or Windows: Ctrl + Shift + P, Mac: Command + Shift + P)
add the following to your JSON settings:
"jupyter.experiments.optOutFrom": ["NativeNotebookEditor"],
restart vscode and check if you have the old version back.
I'm using Spyder via Anaconda on a Mac, and often switch back and forth between the editor and console. I was wondering if there's a keyboard shortcut to switch quickly between these two panes. It's just not quite convenient to do it with the trackpad or mouse.
IPython console to Editor: Command +Shift + E
Editor to IPython console: Command + Shift + I
(On windows you can replace Command with CTRL)