microsoft / vscode-remote-release

Visual Studio Code Remote Development: Open any folder in WSL, in a Docker container, or on a remote machine using SSH and take advantage of VS Code's full feature set.
https://aka.ms/vscode-remote
Other
3.63k stars 283 forks source link

i change remote.SSH.path , I hope change it to use tssh-trzsz,but it not work?it remain call ssh.exe #10181

Closed wyjBot closed 1 month ago

wyjBot commented 1 month ago

changed: D:\tssh.bat

@echo off
setlocal enabledelayedexpansion
rem vscode requires -V to output OpenSSH
for %%A in (%*) do (
    if "%%A"=="-V" (
        echo OpenSSH
        exit /b 0
    )
)
rem replace -v with --debug
set args=
for %%A in (%*) do (
    if "%%A"=="-v" (
        set args=!args! --debug
    ) else (
        set args=!args! %%A
    )
)
rem call tssh
tssh %args%
wyjBot commented 1 month ago

i reinstall Remote SSH , now config file work .