We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a53684d commit fd860d1Copy full SHA for fd860d1
src/main/kotlin/com/coder/toolbox/store/CoderSettingsStore.kt
@@ -37,7 +37,7 @@ class CoderSettingsStore(
37
altHostname = store[TLS_ALTERNATE_HOSTNAME]
38
),
39
disableAutostart = store[DISABLE_AUTOSTART]?.toBooleanStrictOrNull() ?: (getOS() == OS.MAC),
40
- isSshWildcardConfigEnabled = store[ENABLE_SSH_WILDCARD_CONFIG]?.toBooleanStrictOrNull() ?: false,
+ isSshWildcardConfigEnabled = store[ENABLE_SSH_WILDCARD_CONFIG]?.toBooleanStrictOrNull() ?: true,
41
sshConfigPath = store[SSH_CONFIG_PATH].takeUnless { it.isNullOrEmpty() }
42
?: Path.of(System.getProperty("user.home")).resolve(".ssh/config").normalize().toString(),
43
sshLogDirectory = store[SSH_LOG_DIR],
0 commit comments