Radish alpha
r
rad:z39mP9rQAaGmERfUMPULfPUi473tY
Radicle terminal user interface
Radicle
Git
issue/list: Emit missing comment edit message
Erik Kundt committed 4 months ago
commit 838bf381a253c79ba0918ff89eb69f1ef41ab7d8
parent 731a828
1 file changed +3 -0
modified bin/commands/issue/list.rs
@@ -697,6 +697,9 @@ fn comment(channel: &Channel<Message>) -> Widget<State, Message> {
            Event::Key(Key::Char('c')) => Some(Message::Exit {
                operation: Some(RequestedIssueOperation::Reply),
            }),
+
            Event::Key(Key::Char('e')) => Some(Message::Exit {
+
                operation: Some(RequestedIssueOperation::EditComment),
+
            }),
            _ => None,
        })
}