547

The docs mention an executable called code, but I'm not sure where I can find that so I can put it on my path. The zip I downloaded from the VSCode site did not include any such executable. (I am able to run the .app just fine.)

Is this a Windows-only thing?

Audwin Oyong
  • 2,247
  • 3
  • 15
  • 32
Nick Heiner
  • 119,074
  • 188
  • 476
  • 699

32 Answers32

946

From the Visual Studio Code Setup page:

Tip: If you want to run VS Code from the terminal by simply typing 'code', VS Code has a command, Shell Command: Install 'code' command in PATH, to add 'code' to your $PATH variable list.

After installation, launch VS Code. Now open the Command Palette (F1 or ++P on Mac) and type shell command to find the Shell Command: Install 'code' command in PATH command.

After executing the command, restart the terminal for the new $PATH value to take effect. You'll be able to simply type 'code .' in any folder to start editing files in that folder.

Community
  • 1
  • 1
Shaan
  • 10,746
  • 1
  • 20
  • 16
  • 2
    On a side note, vscode ver 0.10.11 didn't add anything to my PATH on win 10, like that page says it would. No biggie. – Benny Jobigan Mar 18 '16 at 21:37
  • 3
    You can add an option -r to open it in a new tab in old window: `code -r `. Normally, that is what you want. – Yarco Sep 06 '16 at 10:07
  • 4
    I'm using macOS Sierra 10.12.6. The `code` command fails to launch Visual Studio Code after I restart my laptop. – Brian Aug 05 '17 at 05:48
  • 11
    When I do this, VS Code creates a symlink called `/usr/local/bin/code` which links to an executable in a temporary directory under `/private/var/folders`. After restarting my computer, that directory is deleted so the symlink goes away. I made a more persistent symlink with: `sudo ln -s /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code /usr/local/bin/code`. Assuming `/usr/local/bin` is in your `PATH` this will survive a restart. – Dan Tenenbaum Jun 11 '18 at 17:23
  • 4
    code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;} you can try adding this to /.zshrc if it doesn't work out. – Neha Nov 04 '19 at 16:11
  • Opening command palette is now `cmd + shft+ p` – Braden Holt Jul 02 '21 at 18:27
  • For the Mac users, please put your VS code editor application in the Applications directory otherwise the code command won't work after reboot – Ahsan Farooq Sep 11 '21 at 13:59
  • After pressing f1 and typing shell command, there are no options to click in the drop down. Any ideas? – Chris Nov 30 '21 at 16:34
408
  1. Download, install and open Visual Studio Code.

  2. Open the Command Palette ( + + P on Mac) OR ViewCommand Palette

  3. Type shell command to find Shell Command: Install 'code' command in PATH command

  4. Install it


Here's a complimentary GIF.

Install Code on Command line

After that, you can use code or code . in the terminal.

code

If you'd like to go a little bit further and learn a couple of great tips/tricks for using the VSCode CLI, I made a YouTube video on my workflows.

starball
  • 20,030
  • 7
  • 43
  • 238
Ahmad Awais
  • 33,440
  • 5
  • 74
  • 56
  • 2
    For whatever reason (⌘ + ⇧ + P ) was not working but F1 did it. Thanks! – T to the J Mar 27 '18 at 19:38
  • After (⇧⌘P), just an example, use the View:Toggle Integrated Terminal command. – AMIC MING May 17 '18 at 18:20
  • ^That's not what is being asked here. – Ahmad Awais May 17 '18 at 19:39
  • (⌘ + ⇧ + P ) didn't work for me, I had to use View -> Command palette to have data appear in the command palette search – Greg Price Jun 12 '18 at 01:23
  • ^You must be on windows or linux. Use Ctrl instead of there. – Ahmad Awais Jun 12 '18 at 01:29
  • I believe (⌘ + ⇧ + P ) is for if you are using the Sublime Text key mappings. Worked for me Otherwise you can just open the command palette from the top menu bar > View > Command Palette. – Lauren Jul 16 '18 at 17:30
  • I have tried this and worked. However, Every time I restart my machine, code . is not recognized anymore – aRyhan Mar 17 '19 at 00:56
  • That's weird. File that as an issue on https://github.com/Microsoft/vscode/issues/ – Ahmad Awais Mar 18 '19 at 02:08
  • code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;} you can try adding this to /.zshrc if it doesn't work out. – Neha Nov 04 '19 at 16:11
  • May I ask you where is the file which the PATH is added? – NeoZoom.lua Apr 16 '20 at 05:42
  • What if "Shell Command: Install 'code' command in PATH command" doesn't show up? Only two options populate: 1. (Preview) PowerShell Command Explorer: Focus on PowerShell Commands View 2. View: Show (Preview) PowerShell Command Explorer – Chris Nov 29 '21 at 21:42
57

If you want to open a file or folder on Visual Studio Code from your terminal, iTerm, etc below are the commands which come as default when you install Visual Studio Code

To open Visual Studio Code from command line

code --

To open the entire folder/directory

code .

To open a specific file

code file_name
eg:- code index.html
Sudharshan
  • 3,634
  • 2
  • 27
  • 27
40

We since updated the script to the following syntax to support multiple files and folders as arguments and to fix an issue with not detecting the current working directory properly:

code () {
    VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*
}

Update for our VS Code 1.0 release:

Please use the command Install 'Code' command in path or Install 'code-insiders' command in path from the command palette (View | Command Palette) to make Code available to the command line.

Josh Unger
  • 6,717
  • 6
  • 33
  • 55
Benjamin Pasero
  • 113,622
  • 14
  • 75
  • 54
  • Is there a way to make this work with sudo, such as: `sudo code`. I'm using VSCode to work on some NPM modules and need sudo to overwrite. – user1715156 Jun 19 '15 at 01:55
  • @BenjaminPasero see my answer for a version which works with mingw32. Please add to VSCode setup docs if possible. – Ilan Aug 16 '15 at 22:21
28

For me on Macbook Book Pro 2019 MacOS version 10.15.6, shortcut to open command palette in VSCode was Shift + Command + P.

On opening it one has to just write install code and press enter.

enter image description here

After that just open the terminal and type code your vscode will start opening.

Imran Zahoor
  • 2,521
  • 1
  • 28
  • 38
24

This was the tutorial I was looking for in this thread. It shows the way to open files in Visual Studio Code by writing code .

1.- Open the file

Bash

                open ~/.bash_profile 

Terminal OS

                    open ~/.zshrc

2.- Add in your file the :

         code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}

3.- Reinicialize terminal and try in the folder you want to open

         code .

4.- Then you can use it as shown in this comment: https://stackoverflow.com/a/41821250/10033560

Daniel Diner
  • 241
  • 2
  • 6
12

I have a ~/bin/code shell script that matches the command @BengaminPasero wrote.

#!/bin/bash
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*

I prefix ~/bin: to my $PATH which allows me to add a bunch of one off scripts without polluting my ~/.bash_profile script.

Tracker1
  • 19,103
  • 12
  • 80
  • 106
  • in bash_profile can add a function.
    `function code { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* }`
    – Py_minion Jan 02 '20 at 21:07
  • @Py_minion I specifically stated that I do this to avoid bloating my bash_profile... Also, this answer and the original question are from over 4 years ago, before the option to add to the path was in the application. – Tracker1 Mar 18 '21 at 07:04
11

Note: Only for Windows Users.

As many folks already suggested ways to open code from command prompt using code . command. This will only open Visual Studio Code Stable build. But If you have downloaded Visual Studio Code Insider build/version (Which has all latest build/features but unstable version) then you need to follow below instructions in windows :

  • Go to Control Panel\System and Security\System. Click on Advanced System Settings enter image description here
  • Click on Environment Variables enter image description here
  • Under System Variables tab, Click on Edit for Path Variable enter image description here
  • Add a new path C:\Users\tsabu\AppData\Local\Programs\Microsoft VS Code Insiders\bin (or) C:\Program Files\Microsoft VS Code Insiders\bin based on location at which you have installed vscode insider in your machine. enter image description here

    Open a new command prompt and type code-insiders . to open vscode-insider build/version
Sabunkar Tejas Sahailesh
  • 4,436
  • 2
  • 28
  • 32
  • The question is regarding OSX not windows, I don't think this is a relevant answer. But as you got 6+, so that means it is still helping some people out there. – Imran Zahoor Nov 17 '20 at 11:57
10

After opening VSC and pressing (Command + Up + P) I tried typing in "shell command" and nothing came up. In order to get "Shell Command: Install 'code' command in PATH command" to come up, you must do the following:

  1. Press (Command, Up, P)

  2. Type > (this will show and run commands)

  3. Then type Shell Command: Install 'code' command in PATH command. It should then come up.

    Once you click it, it will update and you should be good to go!

MacOS X Launch from Command Line docs

Community
  • 1
  • 1
DMuttz
  • 101
  • 1
  • 2
8

On OSX Mavericks I created a bash script named vscode (adapted from the .bashrc in VSCode Setup) in ~/bin:

#!/bin/bash

if [[ $# = 0 ]]
then
    open -a "Visual Studio Code"
else
    [[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
    open -a "Visual Studio Code" --args "$F"
fi

vscode <file or directory> now works as expected.

peterdn
  • 2,386
  • 1
  • 23
  • 24
  • 4
    This script will work if Code is closed, but if it is already open, it just brings it forward and doesn't switch to the new directory. Is there a way to correct that? – Raymond Camden May 16 '15 at 15:00
  • You could use open -n -a ... to open a new instance. – mr_eko Oct 29 '15 at 12:39
8

If you are using VS Code Insiders:

code-insiders .

If you are using VS Code:

code .
Vương Hữu Thiện
  • 1,460
  • 14
  • 21
7

If you install Your vs code in Download folder you need to move the VS code to Application folder then open the vs code ,then press shift + command + p after you will see enter image description here the below image. Then you need to type code . Now you are good to go.

Forhad
  • 1,460
  • 10
  • 12
7

Steps to run code . command in mac to start the VSCode app -

  1. Open VSCode
  2. Open command pallet(Cmd+Shift+P)
  3. Enter Shell Command: Install 'code' command in PATH and select
  4. You will get the notification saying Shell command 'code' successfully installed in PATH.
  5. Restart the terminal and enter code .
  6. This will open VSCode from the current folder files in it.
Raj
  • 706
  • 8
  • 18
6

Try this one

Open Visual Studio Code and press Command + Shift + P then type Shell in command palette now you are able to find this option like Shell Command : Install code in PATH from suggested list in command palette. Select that options.

Open VSCode via Terminal/Command Prompt

That's it.

Now open your terminal type.

$ code .

anand bharti
  • 101
  • 1
  • 5
5

You can use the vscode: protocol that Visual Studio Code defines:

open vscode://file/full/path/to/project/or/file

You can also use

/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code

if you do not fancy modifying your path

xverges
  • 4,608
  • 1
  • 39
  • 60
4

I discovered a neat workaround for mingw32 (i.e. for those of you using the version of bash which is installed by git-scm.com on windows):

code () { VSCODE_CWD="$PWD" cmd //c code $* ;}
Ilan
  • 1,647
  • 1
  • 15
  • 16
  • FYI: You should probably ask/answer your own separate question for Windows specifically for this, if there isn't already one. – Tracker1 Sep 22 '15 at 17:30
  • 1
    Launch "git bash" (i.e. mingw32) and simply type it at the bash command prompt and hit enter. Now to use it `cd /c/some/path` and then `code .` If you want it to be set automatically every time then you run git bash then add it to your `~/.bash_profile` – Ilan Dec 05 '15 at 06:30
4

its very simple:

Launching from the Command Line

You can also run VS Code from the terminal by typing 'code' after adding it to the path:

Launch VS Code. Open the Command Palette (⇧⌘P) and type 'shell command' to find the Shell Command: Install 'code' command in PATH command.

source

https://code.visualstudio.com/docs/setup/mac

Thiago
  • 12,778
  • 14
  • 93
  • 110
3

I ran: open -a "Visual Studio Code" [folder-name] to open a folder with my Visual Studio Code application. Folder name is optional if you just want to open the application. Not sure if this is exactly your use-case, but hope this helps!

3

This is what worked for me on Mac OS Catalina -- found here (thanks, Josiah!)

If you're on Mac OS Catalina, you need to edit your .zprofile instead of .bash_profile.

  1. Edit your ~/.zprofile file: vim ~/.zprofile
  2. Add the following code in it, on it's own line: code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
  3. Save the file: :wq
  4. Re-run the updated file: source ~/.zprofile.
  5. Test that running code . opens your current folder in VS Code!
Kendra
  • 161
  • 1
  • 2
3

In my case I had to use an alias:

alias code="/<PATH TO VSCODE>/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code"

You can add this alias in your ~/.bash_profile.

Rafael Rozon
  • 2,639
  • 1
  • 15
  • 27
3

I added this to my ~/.profile

alias vscode='/Applications/Visual\ Studio\ Code.app/Contents/MacOS/Electron'

then

. ~/.profile

afterwards I can just do

 vscode

from the terminal

Shereef Marzouk
  • 3,282
  • 7
  • 41
  • 64
user454322
  • 7,300
  • 5
  • 41
  • 52
2

Added this to /usr/local/bin/code, you might have to modify the path if they are different.

#!/usr/bin/env bash

CONTENTS="/Applications/Visual Studio Code.app/Contents"
ELECTRON="$CONTENTS/MacOS/Electron"
CLI="$CONTENTS/Resources/app/out/cli.js"
ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
exit $?

Make executable afterwards

sudo chmod +x /usr/local/bin/code
user1116928
  • 149
  • 2
  • Many thanks this is the only way that it works on my machine. I noticed that the editor would open the file `$CONTENTS/Resources/app/out/cli.js` itself. I removed the references to CLI and it behaves as expected. – hmalphettes Nov 11 '16 at 02:24
2

I had this issue because of VS Code Insiders. The path variable was there but I needed to rename the code-insiders.cmd inside to code.cmd .

Maybe this is useful to someone.

pungggi
  • 1,263
  • 14
  • 25
2

For windows Users just type in

>code .

More commands here https://code.visualstudio.com/docs/editor/command-line

Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
Luke Angel
  • 41
  • 3
2

If you're using visual code insiders and you want to open a file or folder in Visual Studio Code insiders from your terminal or any other command line tool then you can refer to the commands below which come by default inside visual studio code insider.

To open Visual Studio Code from command line

code-insiders --

To open the entire folder/directory

code-insiders .

To open a specific file

code-insiders file_name

eg:- code index.html

Blessing
  • 2,450
  • 15
  • 22
2

VSCode now supports it out of the box with version 1.58. Just type:

$ cd path/to/your/directory
$ code .
Krismu
  • 503
  • 4
  • 14
1

The instruction given at VS Code Command Line for launching a path are incorrect; the leading colon shown in the example doesn't work. However, launching with a backslash terminated directory name opens the specified directory as expected.

So, for example,

code C:\Users\DAVE\Documents\Programming\Angular\StringCalculator\src\

opens the Visual Studio Code editor in directory C:\Users\DAVE\Documents\Programming\Angular\StringCalculator\src.

Important: The terminal backslash, though optional, is useful, as it makes clear that the intend is to open a directory, as opposed to a file. Bear in mind that file name extensions are, and always have been, optional.

Beware: The directory that gets appended to the PATH list is the \bin directory, and the shell command code launches a Windows NT Command script.

Hence, when incorporated into another shell script, code must be called or started if you expect the remainder of the script to run. Thankfully, I discovered this before my first test of a new shell script that I am creating to start an Angular 2 project in a local Web server, my default Web browser, and Visual Studio Code, all at once.

Following is my Angular startup script, adapted to eliminate a dependency on one of my system utilities that is published elsewhere, but not strictly required.


@echo off

goto SKIPREM

=========================================================================

Name:               StartAngularApp.CMD

Synopsis:           Start the Angular 2 application installed in a specified
                     directory.

Arguments:          %1 = OPTIONAL: Name of directory in which to application
                          is installed

Remarks:            If no argument is specified, the application must be in
                    the current working directory.

                    This is a completely generalized Windows NT command
                    script (shell script) that uses the NPM Angular CLI to
                    load an Angular 2 application into a Node development
                    Web server, the default Web browser, and the Visual
                    Studio Code text editor.

Dependencies:       Unless otherwise specified in the command line, the
                    application is created in the current working directory.

                    All of the following shell scripts and programs must be
                    installed in a directory that is on the Windows PATH
                    directory list.

                    1)  ShowTime.CMD

                    2)  WWPause.exe

                    3)  WWSleep.exe

                    4)  npm (the Node Package Manager) and its startup 
                        script, npm.cmd, must be accessible via the Windows
                        PATH environment string. By default, this goes into
                        directory C:\Program Files\nodejs.

                    5)  The Angular 2 startup script, ng.cmd, and the Node
                        Modules library must be installed for global access.
                        By default, these go into directory %AppData%\npm.

Author:             David A. Gray

Created:            Monday, 23 April 2017

-----------------------------------------------------------------------
Revision History
-----------------------------------------------------------------------

Date       By  Synopsis
---------- --- --------------------------------------------------------
2017/04/23 DAG Script created, tested, and deployed.
=======================================================================

:SKIPREM

echo BOJ %~0, version %~t0
echo.
echo -------------------------------------------------------
echo Displaying the current node.js version:
echo -------------------------------------------------------
echo.
node -v
echo.
echo -------------------------------------------------------
echo Displaying the current Node Package Manager version:
echo -------------------------------------------------------
echo.
call npm -v
echo.
echo -------------------------------------------------------
echo Loading Angular starter application %1
echo into a local Web server, the default Web browser, and
echo the Visual Studio Code text editor.
echo -------------------------------------------------------
echo.

if "%1" neq "" (
    echo.
    echo -------------------------------------------------------
    echo Starting the Angular application in directory %1
    echo -------------------------------------------------------
    echo.
    cd "%~1"
    call code %1\src\
) else (
    echo.
    echo -------------------------------------------------------
    echo Starting the Angular application in directory %CD%
    echo -------------------------------------------------------
    echo.
    call code %CD%\src\
)

call ng serve --open

echo.
echo -------------------------------------------------------
echo %~nx0 Done!
echo -------------------------------------------------------
echo.
Pause
David A. Gray
  • 1,039
  • 12
  • 19
1

$> open -a "Visual Studio Code" [file-name]

0

link your currentily folders to vscode.

Windows Registry Editor Version 5.00

; Directory\Background\shell => on empty space

[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode]
"Icon"="C:\\current-folder-vscode\\Code.exe,0"
@="VsCode"

[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]
@="C:\\current-folder-vscode\\Code.exe ."

; Directory\shell => on a folder

[HKEY_CLASSES_ROOT\Directory\shell\vscode]
@="VsCode"
"Icon"="C:\\current-folder-vscode\\Code.exe,0"

[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]
@="C:\\current-folder-vscode\\Code.exe ."
0

If you install VS CODE using snap. You will need to add /snap/bin in your PATH environment variable. so - open your .bashrc or .zshrc and add /snap/bin in your PATH environment variable

reload terminal, and than code comand will start it

edikgat
  • 861
  • 8
  • 9
0

For Windows you can use Command:

start Code filename.extension

The above line works for me.

Dharman
  • 30,962
  • 25
  • 85
  • 135
0

Just update your python to python3.9 i did that and it worked for me.

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Apr 17 '22 at 11:46