Merge pull request #305 from felipemarkson/patch-1

Backing to depricated option to Integrated Terminal
This commit is contained in:
Nick Richards
2022-05-07 07:56:05 +01:00
committed by GitHub
+7 -7
View File
@@ -18,14 +18,14 @@ To execute commands on the host system, run inside the sandbox:
To make the Integrated Terminal automatically use the host system's shell,
you can add this to the settings:
{
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/usr/bin/flatpak-spawn",
"args": ["--host", "--env=TERM=xterm-256color", "bash"]
}
}
"terminal.integrated.shell.linux": "/usr/bin/flatpak-spawn",
"terminal.integrated.shellArgs.linux": [
"--host",
"--env=TERM='xterm-256color'",
"/bin/bash"
],
}
This flatpak provides a standard development environment (gcc, python, etc).