[BUG] - termscp not respecting port in ssh config (#216)

This commit is contained in:
Christian Visintin
2023-10-01 16:12:43 +02:00
committed by GitHub
parent d3c2c084db
commit 20c3e22572
7 changed files with 32 additions and 16 deletions

View File

@@ -3,11 +3,11 @@
//! `filetransfer_activiy` is the module which implements the Filetransfer activity, which is the main activity afterall
use remotefs::fs::UnixPex;
pub(self) use remotefs::File;
use remotefs::File;
use tuirealm::{State, StateValue};
pub(self) use super::browser::FileExplorerTab;
pub(self) use super::{
use super::browser::FileExplorerTab;
use super::{
FileTransferActivity, Id, LogLevel, Msg, PendingActionMsg, TransferMsg, TransferOpts,
TransferPayload, UiMsg,
};

View File

@@ -18,11 +18,11 @@ use std::time::Duration;
// Includes
use chrono::{DateTime, Local};
pub(self) use lib::browser;
use lib::browser;
use lib::browser::Browser;
use lib::transfer::{TransferOpts, TransferStates};
use remotefs::RemoteFs;
pub(self) use session::TransferPayload;
use session::TransferPayload;
use tempfile::TempDir;
use tuirealm::{Application, EventListenerCfg, NoUserEvent};