soerenuhrbach / vscode-deepl

DeepL for Visual Studio Code
MIT License
33 stars 7 forks source link

Support proxy servers #36

Open haruyuki-oda opened 8 months ago

haruyuki-oda commented 8 months ago

Thanks for an excellent extension application. Does this application support access under a proxy environment? I added the general proxy settings like "http.proxy" and "http.proxySttrictSSL" into "setting.json" of VS code. it doesn't work.

soerenuhrbach commented 8 months ago

Hi @haruyuki-oda,

At the moment the extension doesn't support proxies and unfortunately is there currently no way (in the vscode api) to access the configured proxy settings or using a preconfigured socket. So I would have to implement the proxy support by myself. (see https://github.com/microsoft/vscode/issues/12588)

Using settings like "http.proxy" or "https.proxy" seems to be the legacy proxy server support (see here). At the moment I am not sure what is the best way to implement proxy support.

Please be patient until I have identified and implemented a solution.