10 results found
-
Visual Studio Code debug configuration
In VS Code, there are two core debugging modes, Launch and Attach, which handle two different workflows and segments of developers. Depending on your workflow, it can be confusing to know what type of configuration is appropriate for your project.
-
Configure VS Code for Microsoft C++ - Visual Studio Code
In this tutorial, you configure Visual Studio Code to use the Microsoft Visual C++ compiler and debugger on Windows. After configuring VS Code, you will compile and debug a simple Hello World program in VS Code. This tutorial does not teach you details about the Microsoft C++ toolset or the C++ language.
-
Configure C/C++ IntelliSense - Visual Studio Code
IntelliSense is a helpful tool built into VS Code that provides various code editing features to help you code faster and more efficiently. For example, code completion, parameter info, syntax highlighting, Code Actions (light bulbs), and member lists are all generated using IntelliSense.
-
C/C++ for Visual Studio Code
When you create a *.cpp file, the extension adds features such as syntax highlighting (colorization), smart completions and hovers (IntelliSense), and error checking. Open VS Code. Select the Extensions view icon on the Activity Bar or use the keyboard shortcut (⇧⌘X (Windows, Linux Ctrl+Shift+X)). Search for 'C++'. Select Install.
-
Default keyboard shortcuts reference - Visual Studio Code
VS Code comes with a set of default keyboard shortcuts. This article lists the default keyboard shortcuts in VS Code. You can also view the default shortcuts in the product: Open the Keyboard Shortcuts editor, and then select Show System Keybindings in the More Actions (...) menu.
-
Running Python code in Visual Studio Code
To enable or disable shell integration in the terminal, you can toggle in your settings. The Python extension offers various ways to run Python code without extra configuration. Select the Run Python File in Terminal play button in the top-right of the editor.
-
Using GCC with MinGW - Visual Studio Code
In this tutorial, you configure Visual Studio Code to use the GCC C++ compiler (g++) and GDB debugger from mingw-w64 to create programs that run on Windows. After configuring VS Code, you will compile, run, and debug a Hello World program. This tutorial does not teach you about GCC, GDB, minGW-w64, or the C++ language.
-
Polyglot Notebooks in VS Code - Visual Studio Code
Polyglot programming is the practice of using multiple programming languages to leverage the strength of each language for different tasks. What are Notebooks? Notebooks are interactive files that allow the mixing of executable code, visualizations, equations, and narrative text.
-
Debug C++ in Visual Studio Code
Visual Studio Code supports the following debuggers for C/C++ depending on the operating system you are using: You can debug Windows applications created using Cygwin or MinGW by using VS Code. To use Cygwin or MinGW debugging features, the debugger path must be set manually in the launch configuration (launch.json).
-
Jupyter Notebooks in VS Code - Visual Studio Code
Jupyter (formerly IPython Notebook) is an open-source project that lets you easily combine Markdown text and executable Python source code on one canvas called a notebook. Visual Studio Code supports working with Jupyter Notebooks natively, and through Python code files.