diff --git a/CHANGELOG.md b/CHANGELOG.md index d97ff5d..d255f80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,8 @@ Released on ?? > ⭐ 500 stars update 🌟 +- **Bugfix** + - Fixed [Issue 122](https://github.com/veeso/termscp/issues/122) - Dependencies: - Bump `argh` to `0.1.8` - Bump `chrono` to `0.4.22` diff --git a/src/ui/activities/setup/components/ssh.rs b/src/ui/activities/setup/components/ssh.rs index b817d3f..12aa4d9 100644 --- a/src/ui/activities/setup/components/ssh.rs +++ b/src/ui/activities/setup/components/ssh.rs @@ -143,7 +143,8 @@ impl Component for SshKeys { _ => Some(Msg::None), }, Event::Keyboard(KeyEvent { - code: Key::Delete, .. + code: Key::Delete | Key::Char('e'), + .. }) => Some(Msg::Ssh(SshMsg::ShowDelSshKeyPopup)), Event::Keyboard(KeyEvent { code: Key::Char('n'),