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
I am not sure how feasible this is, but it seems more doable now that config-ssh uses wildcards. We generate a separate config because we want to add flags and options. Maybe we could read the SSH config and add anything we are missing? Would need to respect CODER_SSH_CONFIG_FILE as well.
Or, can we do something with includes? Or if we use a prefix like coder.vscode.* then it will just naturally inherit options.
The text was updated successfully, but these errors were encountered:
The problem was that users would do things like coder config-ssh -o ForwardX11=yes and ForwardX11=yes will apply to coder ssh or ssh coder.* but it will not apply to the extension, wildcards or no.
It can be worked around by manually adding ForwardX11=yes to the SSH config file or the extension settings, but it could be nice to support it automatically. Not sure how many people care about this though.
I am not sure how feasible this is, but it seems more doable now that
config-ssh
uses wildcards. We generate a separate config because we want to add flags and options. Maybe we could read the SSH config and add anything we are missing? Would need to respectCODER_SSH_CONFIG_FILE
as well.Or, can we do something with includes? Or if we use a prefix like
coder.vscode.*
then it will just naturally inherit options.The text was updated successfully, but these errors were encountered: