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
this = 1
is = 2
# a code block
#---
and = 1
this =2
# is another
one = 3Ctrl+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
