Radish alpha
r
rad:z39mP9rQAaGmERfUMPULfPUi473tY
Radicle terminal user interface
Radicle
Git
bin: Quit with Ctrl-C
Merged did:key:z6MkswQE...2C1V opened 2 years ago
3 files changed +3 -3 ba1e3897 67b38687
modified bin/commands/inbox/flux/select/ui.rs
@@ -77,7 +77,7 @@ impl Widget<InboxState, Action> for ListPage {

    fn handle_key_event(&mut self, key: termion::event::Key) {
        match key {
-
            Key::Char('q') => {
+
            Key::Char('q') | Key::Ctrl('c') => {
                let _ = self.action_tx.send(Action::Exit { selection: None });
            }
            Key::Char('\n') => {
modified bin/commands/issue/flux/select/ui.rs
@@ -81,7 +81,7 @@ impl Widget<IssuesState, Action> for ListPage {

    fn handle_key_event(&mut self, key: termion::event::Key) {
        match key {
-
            Key::Char('q') => {
+
            Key::Char('q') | Key::Ctrl('c') => {
                let _ = self.action_tx.send(Action::Exit { selection: None });
            }
            Key::Char('\n') => {
modified bin/commands/patch/flux/select/ui.rs
@@ -81,7 +81,7 @@ impl Widget<PatchesState, Action> for ListPage {

    fn handle_key_event(&mut self, key: termion::event::Key) {
        match key {
-
            Key::Char('q') => {
+
            Key::Char('q') | Key::Ctrl('c') => {
                let _ = self.action_tx.send(Action::Exit { selection: None });
            }
            Key::Char('\n') => {