Answers for "terminal vscode"

3

open vscode in terminal sudo

sudo code --user-data-dir="~/.vscode-root"
Posted by: Guest on July-24-2020
1

vscode terminal configuration

"terminal.integrated.profiles.windows": {
  "PowerShell -NoProfile": {
    "source": "PowerShell",
    "args": ["-NoProfile"]
  }
},
"terminal.integrated.profiles.linux": {
  "zsh (login)": {
    "path": "zsh",
    "args": ["-l"]
  }
}
Posted by: Guest on May-09-2021
1

code in terminal

cat << EOF >> ~/.bash_profile
# Add Visual Studio Code (code)
export PATH="\$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
EOF
Posted by: Guest on September-18-2020
0

vscode from terminal

code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
Posted by: Guest on April-20-2020
-1

vscode select terminal

# to select new default shell for the terminal in vs code:
- press F1 in VS Code
- typing/selecting Terminal: Select Default Shell
Posted by: Guest on October-30-2020

Browse Popular Code Answers by Language