Answers for "how to open a file in vs code from terminal"

22

open visual studio code from terminal mac

#Add Bash alias in .bash_profile ?
$ alias code="open -a /Applications/Visual\ Studio\ Code.app"

#Open Visual Studio Code by command
$ code .
Posted by: Guest on November-02-2020
8

install code command on mac

Open VCode
press CMD + SHIFT + P
type 'shell command' 
select 'Install code command in path'
navigate to any project from the terminal and type 'code .'
Posted by: Guest on July-15-2020
6

vs code open folder from terminal in same window

code -r .
Posted by: Guest on April-06-2020
2

vs code a project folder from the command line

cd my-project-folder/
code -n .
Posted by: Guest on April-03-2020
0

how to open terminal in vs code

To open a fresh terminal use Ctr+` shortcut or simply Ctrl+J. To open an existing terminal use Ctrl+J shortcut.
Posted by: Guest on September-26-2021
0

how to open a file in vs code from terminal

code -r fileName
Posted by: Guest on June-27-2021

Code answers related to "how to open a file in vs code from terminal"

Browse Popular Code Answers by Language