About 226,000 results
Open links in new tab
  1. How to open a file from the integrated terminal in Visual Studio …

    Dec 29, 2016 · @totalhack I have the same 1.66, but on Windows, and Ctrl+clicking the link does open the browser. For a file in folder of the integrated terminal, Ctrl+click does open the file in …

  2. How to open file using vscode terminal? - Stack Overflow

    Nov 25, 2016 · If you are already in VSCode terminal (not an external OS terminal), check out the latest VSCode 1.64 (Jan. 2022) Terminal shell integration: The terminal now features …

  3. How to call VS Code Editor from terminal / command line

    code -n filename-- Opens file in NEW window. code -r filename-- Opens file in already opened window (this is what I wanted and why I'm commenting. It works great from the terminal …

  4. macos - Run / Open VSCode from Mac Terminal - Stack Overflow

    May 6, 2015 · PS: You can add as many aliases as needed to open a file/folder with different editors. Just mention the editor's name in the alias. For example, open file/folder with sublime …

  5. how to open a file in vscode through a terminal?

    Sep 28, 2020 · I want to open a project folder using terminal. when type the command .code in terminal it open up vscode but the folder is empty and there is no file. obviously I can open it …

  6. How to open Visual Studio Code from the command line on linux?

    Aug 14, 2016 · Tip: We have instructions for Mac users in our Setup topic that enable you to start VS Code from within a terminal. We add the VS Code executable to the PATH environment …

  7. How to open a shell command prompt inside Visual Studio Code?

    May 1, 2015 · Somewhat related note: I was having trouble opening the native console (workbench.action.terminal.openNativeConsole in Keyboard Shortcuts, Open New Terminal in …

  8. reference - How to refer to current file from Integrated Terminal in ...

    Sep 1, 2017 · You could, as a workaround, use the new abilty to send variables like ${file} to the terminal with such a keybinding (see vscode docs). In your keybindings.json file add: In your …

  9. How to open folders in VSCode via Terminal in a fresh state?

    May 18, 2017 · Part of the answer on this thread worked for me. Basically, make sure VSC is in the Applications folder. Then open the Command Palette (F1 or ⇧⌘P on Mac) and type shell …

  10. how to open files in vscode from integrated terminal

    Jun 23, 2021 · You can open the directory you are in by typing code . or a specific directory by using code <dir name> and you can open files with the same thing code <file name> you can …