DEV Community

Cover image for Automatically Open the Current Directory in VS Code From Terminal

Automatically Open the Current Directory in VS Code From Terminal

Shannon Crabill on December 28, 2020

Last year, I was blown away by some Terminal commands that I learned. My favorite one is open . to open a Finder window for whichever directory you...
Collapse
 
moopet profile image
Ben Sinclair • Edited

I'm pretty sure VS Code installs itself into the path anyway, doesn't it? I've never had to do anything and it works using code even on Windows.

A hot tip though using open is that you can pass anything to it and it'll behave like you clicked that thing in the GUI, even URLs. So on a Mac, you could do open https://dev.to and it'd open in your default browser. Since VS Code registers itself as the handler for vscode schemes, you can also do this:

open 'vscode://file//Users/myusername/projects/myfile.txt:123:45'
Enter fullscreen mode Exit fullscreen mode

And it'll open VS Code with the file /Users/myusername/projects/myfile.txt and your cursor already on line 123 and column 45. This is how those error messages that say things like "syntax error at line 20" get to magically work in some cases.

If you use VSCodium, change the appropriate bit to vscodium://, if you use Gnome or any derivatives, change open to gnome-open. Other Linux systems have other syntaxes, but generally one of those two will get you by.

Collapse
 
scrabill profile image
Shannon Crabill

A hot tip though using open is that you can pass anything to it and it'll behave like you clicked that thing in the GUI, even URLs. So on a Mac, you could do open dev.to and it'd open in your default browser. Since VS Code registers itself as the handler for vscode schemes, you can also do this:

open 'vscode://file//Users/myusername/projects/myfile.txt:123:45'
Enter fullscreen mode Exit fullscreen mode

And it'll open VS Code with the file /Users/myusername/projects/myfile.txt and your cursor already on line 123 and column 45. This is how those error messages that say things like "syntax error at line 20" get to magically work in some cases.

Whooooooooa I did not know you could get this specific with open .. This should be it's own blog post.

Collapse
 
nickytonline profile image
Nick Taylor • Edited

It doesn't from what I've understood. You have to do it explicitly. I typically do it via the command palette like Shannon did.

Collapse
 
moopet profile image
Ben Sinclair

Have you tried it without? What OS are you using?

Thread Thread
 
edgewood1 profile image
Mel DeJesus

Yep; I'm on Ventura OS ~ it might depend on how VS code was installed, but I've had to follow Shannon's approach.

Collapse
 
webdevjoshb profile image
Joshua Blauvelt • Edited

This is great, thanks! I can open any folder from the integrated terminal but it will start a new instance of VS Code; is there a way to open the folder within the same VS Code instance? screenshot

Collapse
 
robyyo profile image
Rob

Try code -r [name of file/folder]

Collapse
 
sudhakar6 profile image
Sudhakar • Edited

Try code -a . (It opens the folder within the same VS Code instance)
Try code -r . (It refreshes the same VS Code instance and opens the folder, terminal also gets refreshed)

Collapse
 
jairo1031 profile image
Jay Rodriguez

What about files? can you open them as well from the same instance if your in the directory?

Collapse
 
jamesqquick profile image
James Q Quick

Yassss!! Use this all the time. Share in Discord :)

Collapse
 
molikawsaud profile image
Saad Bakhiyi

Thank you, you help a lot

Collapse
 
phutngo profile image
Phu Ngo

Anyway to do it the other way around? When I open a folder from vscode, to then automatically open the terminal?

Collapse
 
mmranger profile image
Mike McQueen

This plus the gpm plugin, which let's me open any git project from within vscode Without trying my hands off the keyboard make me feel like "Hackerman".

Collapse
 
ilay_rosenstein profile image
Ilay Rosenstein

thank you! been looking for it myself for a while.