Updated settings.json file to fit VSC's docs (#13829)
This change fixes the warning caused by deprecated way of configuring terminal profiles. The warning caused by old settings.json is the following: This is deprecated, the new recommended way to configure your default shell is by creating a terminal profile in `#terminal.integrated.profiles.windows#` and setting its profile name as the default in `#terminal.integrated.defaultProfile.windows#`. This will currently take priority over the new profiles settings but that will change in the future. Refer to the link below for more information: https://code.visualstudio.com/docs/editor/integrated-terminal#_configuration
This commit is contained in:
parent
8802d28aad
commit
9c69db4700
1 changed files with 10 additions and 7 deletions
|
@ -65,14 +65,17 @@ Now, we will set up the MSYS2 window to show up in VSCode as the integrated term
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"terminal.integrated.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe",
|
"terminal.integrated.profiles.windows": {
|
||||||
"terminal.integrated.env.windows": {
|
"QMK_MSYS": {
|
||||||
"MSYSTEM": "MINGW64",
|
"path": "C:/QMK_MSYS/usr/bin/bash.exe",
|
||||||
"CHERE_INVOKING": "1"
|
"env": {
|
||||||
|
"MSYSTEM": "MINGW64",
|
||||||
|
"CHERE_INVOKING": "1"
|
||||||
|
},
|
||||||
|
"args": ["--login"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"terminal.integrated.shellArgs.windows": [
|
|
||||||
"--login"
|
|
||||||
],
|
|
||||||
"terminal.integrated.cursorStyle": "line"
|
"terminal.integrated.cursorStyle": "line"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue