About 5,610,000 results
Open links in new tab
  1. Editing JSON with Visual Studio Code

    When opening a file that ends with .json, VS Code provides features to make it simpler to write or modify the file's content. For properties and values, both for JSON data with or without a schema, we offer up suggestions as you type with IntelliSense.

  2. Where is the 'launch.json' file in Visual Studio Code?

    May 12, 2021 · VS Code keeps debugging configuration information in a launch.json file located in a .vscode folder in your workspace (project root folder) or in your user settings or workspace settings. To create a launch.json file, click the create a launch.json file link in the Run start view. As of Visual Studio Code 1.56:

  3. How to run a command in Visual Studio Code with launch.json

    May 8, 2017 · Is there a way to execute an ssh command when debugging a project with .vscode/launch.json? For example: ssh -i xxxxx. Or is it possible to create a command that you can run from the F1 command palette pop-up? Something like RunCustomCommandxx. there is also marketplace.visualstudio.com/…

  4. How do I open the 'launch.json' file in Visual Studio Code?

    In Visual Studio Code, use shortcut Ctrl + Shift + P to open the Command Palette and type Open launch.json. And it will open the launch.json file for you. If you also can't open launch.json then try the way below. Check if the .vscode folder exists in the root folder. If not, then create a new one and create file launch.json in that.

  5. How to Format JSON in VSCode - GeeksforGeeks

    Jul 17, 2024 · One way to format JSON in VSCode if by using the inbuild JSON formatted. All you need to do is follow the steps given below: Open JSON File: Open the JSON file you want to format in VSCode. Command Palette: Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac) to open the Command Palette.

  6. How to Open launch.json in VS Code - Alphr

    May 26, 2023 · Press Ctrl + Shift + P to open the Command Palette. Type “Open launch.json” in the Command Palette and press “Enter.” This should open the launch.json file for you. If the launch.json file...

  7. Configure C/C++ debugging - Visual Studio Code

    Configure C/C++ debugging. A launch.json file is used to configure the debugger in Visual Studio Code.. Visual Studio Code generates a launch.json (under a .vscode folder in your project) with almost all of the required information. To get started with debugging you need to fill in the program field with the path to the executable you plan to debug. This must be …

  8. Working with VS Code Launch Configurations - Gigi Labs

    Feb 15, 2023 · In this article, I’ll explain how you can debug code using different languages, even at the same time. I’ll also show you how you can customise these launch configurations to pass command-line arguments, set environment variables, run pre-launch tasks, and more. Anytime you want to debug something, you just press F5 (like in Visual Studio).

  9. The Run Button in VSCode - Medium

    Oct 28, 2024 · In today’s article, we’ll dive deep into the mechanics of VSCode’s “Run” Button feature, exploring configuration files like launch.json and tasks.json, and how they streamline your...

  10. How do I run a JSON file in Visual Studio Code?

    Mar 29, 2019 · You need to configure the tasks in a tasks. json file (located under your workspace . vscode folder) if you want to do more than just run the task. For example, you might want to match reported problems and highlight them within VS Code, or to trigger a build task using the Tasks: Run Build Task command (Ctrl+Shift+B). Where do I put tasks in json?

  11. Some results have been removed