In VSCode I went through the following menu options:
File -> Preferences -> Settings -> Extensions -> Julia -> Execution: Result Type
Within this item I chose both
from the dropdown list.
I did this for both the User and Workspace choices and restarted VSCode.
Still, when I run some code the results are not displayed to the side of the equation, but only in the REPL.
I looked into the settings.json
file and there isn’t a line dedicated to this option. There is a line related to the colors of inline results. It was originally empty and I aded a color (blue) for the foreground in the hope that the problem was due to the absence of colors:
"julia.execution.inlineResults.colors": {
foreground: blue
}
That did not help. The results of calculations still do not show up to the right of the executed code.
I thought about editing the settings.json
file but I could not find (I tried Googling) a reference for the syntax that would apply in this case.
Any suggestions on how to fix this problem?
Also, where can one find references to the syntax appropriate to different items within settings.json
?
Any help will be greatly appreciated.