fix: remove ssh timeout option on windows (#2072)

This commit is contained in:
Jakub Panek 2023-01-28 20:44:58 +01:00 committed by GitHub
parent 2af7d92bae
commit 8fa454f58f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@
- [#1971](https://github.com/lapce/lapce/pull/1971): Fix up/down movement on first/last line
- [#2036](https://github.com/lapce/lapce/pull/2036): Fix movement on selections with up/down arrow keys
- [#2056](https://github.com/lapce/lapce/pull/2056): Fix default directory of remote session file picker
- [#2072](https://github.com/lapce/lapce/pull/2072): Fix connection issues from Windows to lapce proxy
## 0.2.5

View File

@ -812,7 +812,7 @@ struct SshRemote {
impl SshRemote {
#[cfg(windows)]
const SSH_ARGS: &'static [&'static str] = &["-o", "ConnectTimeout=15"];
const SSH_ARGS: &'static [&'static str] = &[];
#[cfg(unix)]
const SSH_ARGS: &'static [&'static str] = &[