You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -130,11 +130,18 @@
130
130
],
131
131
"markdownEnumDescriptions": [
132
132
"Disables autostart on macOS only (recommended to avoid sleep/wake issues)",
133
-
"Disables on all platforms",
133
+
"Disables autostart on all platforms",
134
134
"Keeps autostart enabled on all platforms"
135
135
],
136
136
"default": "auto"
137
137
},
138
+
"coder.sshFlags": {
139
+
"markdownDescription": "Additional flags to pass to the `coder ssh` command when establishing SSH connections. Enter each flag as a separate array item; values are passed verbatim and in order. See the [CLI ssh reference](https://coder.com/docs/reference/cli/ssh) for available flags.\n\nNote that the following flags are ignored because they are managed internally by the extension: `--network-info-dir`, `--log-dir`, `--ssh-host-prefix`. To manage the `--disable-autostart` flag, use the `coder.disableAutostart` setting.",
140
+
"type": "array",
141
+
"items": {
142
+
"type": "string"
143
+
}
144
+
},
138
145
"coder.globalFlags": {
139
146
"markdownDescription": "Global flags to pass to every Coder CLI invocation. Enter each flag as a separate array item; values are passed verbatim and in order. Do **not** include the `coder` command itself. See the [CLI reference](https://coder.com/docs/reference/cli) for available global flags.\n\nNote that for `--header-command`, precedence is: `#coder.headerCommand#` setting, then `CODER_HEADER_COMMAND` environment variable, then the value specified here. The `--global-config` flag is explicitly ignored.",
0 commit comments