kittensneedlove
kittensneedlove

Reputation: 135

Command Line/Window in Visual Studio Code

I am new to Visual Studio Code and using the latest Version: 1.29.1.

In Matlab I had a script window where I wrote code, a Command Window where I could test both snippets of code and enter variables to see their value, and I had a workspace view that listed all of my variables, their types, and their values.

In Visual Studio Code, I see the obvious script writing window, but where is the command window to test run code and run variables to see their value, and the workspace window where variable values are displayed?

Thanks Community

Upvotes: 0

Views: 505

Answers (1)

Randy Casburn
Randy Casburn

Reputation: 14185

You get to the terminal with CTRL`

You can also double tap the shift key and type "terminal" and that should work too.

Here are the docs:

https://code.visualstudio.com/docs/editor/integrated-terminal

Upvotes: 1

Related Questions