Julia VSCode Extension
Documentation on the Julia VSCode extension can be found here
Recommended Settings
File
->Preferences
->Settings
Put into the search bar Julia Exection
Julia › Execution: Code In REPL
- Print executed code in REPL and append it to the REPL history.
Make sure that x
is there!
VSCode blocks
= 1
this = 2
is # a code block
#---
= 1
and =2
this # is another
= 3 one
Ctrl+Enter
executes the currently marked line/segment
Alt+Enter
If you are within one code-block, executes it
+Shift
Adding a shift to the previous commands executes them, and then moves to next line/block
find more keybindings here
VSCode autoformat
Ctrl+Shift+I
to automatically format your code