mirror of https://github.com/lapce/lapce.git
fix: remove ssh timeout option on windows (#2072)
This commit is contained in:
parent
2af7d92bae
commit
8fa454f58f
|
@ -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
|
||||
|
||||
|
|
|
@ -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] = &[
|
||||
|
|
Loading…
Reference in New Issue