sssh icon indicating copy to clipboard operation
sssh copied to clipboard

Simply connect to your ssh server

Results 7 sssh issues
Sort by recently updated
recently updated
newest added

I don't know the use case of the `Box::leak`s we have in the source code. Maybe always convert to `String`. Maybe you can use [Cow](https://doc.rust-lang.org/std/borrow/enum.Cow.html) instead.

enhancement
help wanted
todo

Thanks for your fantastic project. As a useful improvement, It seems good to add "save password" feature for each username. I mean something like [this](https://github.com/mrunderline/ssh-manager).

enhancement
help wanted

There are many `let _`s, most of them (or maybe all of them) are useless in your code.

help wanted
todo

The code is full of `clone`s, `cloned`, `copied` and so on. :) Now it's like PHP :P

enhancement
help wanted
todo

If it's possible, I think it's a better practice to use trait to define [subcommands](https://github.com/pouriya/sssh/tree/23.03.05/src/subcommands).

enhancement
todo

It looks like WorkingKeys can be an Enum. And so [`state.working_keys`](https://github.com/pouriya/sssh/blob/23.03.05/src/subcommands/select.rs#L176) can be a simple array, or if you insist for the uniqueness, it can be a BTreeSet.

enhancement
help wanted
todo

Clippy is your mate, even if you sleep with it `nightly`!

enhancement
help wanted
todo