The command \"code .\" doesn\'t work in this manual?
All the other steps before that worked. How can I call the Visual Studio Code in OSX terminal?
Otherwise (as noted in the comments) you'll have to go through this process again after reboot
Open the Command Palette via (⇧⌘P) and type shell command to find the Shell 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. The "." Simply means "current directory"
(Source: VS Code documentation)
NOTE: If you're running a build based off the OSS repository... You will need to run code-oss . @Dzeimsas Zvirblis