Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

impl: add the option to disable ssh wildcard configuration#584

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
fioan89 merged 9 commits intomainfromimpl-support-for-disabling-wildcard-config
Oct 1, 2025
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
impl: expose ssh wildcard config in the Settings page
Updated the UI component to allow configuration by the user
  • Loading branch information
@fioan89
fioan89 committedSep 29, 2025
commita6de12a4cb0089298ad24f602b9cc11dcdb7279a
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -120,13 +120,24 @@ class CoderSettingsConfigurable : BoundConfigurable("Coder") {
CoderGatewayBundle.message("gateway.connector.settings.tls-alt-name.comment"),
)
}.layout(RowLayout.PARENT_GRID)
row(CoderGatewayBundle.message("gateway.connector.settings.disable-autostart.heading")) {
checkBox(CoderGatewayBundle.message("gateway.connector.settings.disable-autostart.title"))
.bindSelected(state::disableAutostart)
.comment(
CoderGatewayBundle.message("gateway.connector.settings.disable-autostart.comment"),
)
}.layout(RowLayout.PARENT_GRID)
group {
row {
cell() // For alignment.
checkBox(CoderGatewayBundle.message("gateway.connector.settings.disable-autostart.title"))
.bindSelected(state::disableAutostart)
.comment(
CoderGatewayBundle.message("gateway.connector.settings.disable-autostart.comment"),
)
}.layout(RowLayout.PARENT_GRID)
row {
cell() // For alignment.
checkBox(CoderGatewayBundle.message("gateway.connector.settings.wildcard-config.title"))
.bindSelected(state::isSshWildcardConfigEnabled)
.comment(
CoderGatewayBundle.message("gateway.connector.settings.wildcard-config.comment"),
)
}.layout(RowLayout.PARENT_GRID)
}
row(CoderGatewayBundle.message("gateway.connector.settings.ssh-config-options.title")) {
textArea().resizableColumn().align(AlignX.FILL)
.bindText(state::sshConfigOptions)
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,12 +104,14 @@ gateway.connector.settings.tls-alt-name.comment=Optionally set this to \
an alternate hostname used for verifying TLS connections. This is useful \
when the hostname used to connect to the Coder service does not match the \
hostname in the TLS certificate.
gateway.connector.settings.disable-autostart.heading=Autostart
gateway.connector.settings.disable-autostart.title=Disable autostart
gateway.connector.settings.disable-autostart.comment=Checking this box will \
cause the plugin to configure the CLI with --disable-autostart. You must go \
through the IDE selection again for the plugin to reconfigure the CLI with \
this setting.
gateway.connector.settings.wildcard-config.title=Enable SSH wildcard config
gateway.connector.settings.wildcard-config.comment=Enables or disables wildcard \
entries in the SSH configuration, which allows generic rules for matching multiple workspaces
gateway.connector.settings.ssh-config-options.title=SSH config options
gateway.connector.settings.ssh-config-options.comment=Extra SSH config options \
to use when connecting to a workspace. This text will be appended as-is to \
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp