-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terminal settings per OS not alligned with rest of vscode #8346
Comments
Requesting feedback @Microsoft/vscode What is the ideal format for the settings? 👍 the comment you like if you can't be bothered talking 😃 |
Option 1What is currently done: {
"terminal.integrated.shell.linux": "bash",
"terminal.integrated.shellArgs.linux": ["-l"]
} |
Option 2"terminal.integrated.shell": {
"linux": "bash"
}
"terminal.integrated.shellArgs": {
"linux": ["-l"]
} |
Option 3Put both the shell executable and args into OS key: "terminal.integrated.shell": {
"linux": {
"exec": "bash",
"args": ["-l"],
}
} |
Option 4Hybrid of Option 2 and 3, where the os key can take either a string (the executable), or an object (the executable and optionally the args array). "terminal.integrated.shell": {
"linux": {
"shell": "bash",
"args": ["-l"],
},
"osx": "bash"
} |
Settings are different from launch.json and task.json and we intentionally made them as flat as possible so Option 1 is consistent with the existing practice. |
Closing as designed, we want to keep settings as flat as possible. |
#8222
e.g
The text was updated successfully, but these errors were encountered: