modified Cargo.lock
@@ -1643,6 +1643,7 @@ dependencies = [
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -1650,6 +1651,7 @@ dependencies = [
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -1710,8 +1712,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
modified Cargo.toml
@@ -19,14 +19,16 @@ flux = ["dep:tokio", "dep:tokio-stream"]
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified bin/commands/inbox.rs
@@ -11,8 +11,6 @@ use std::ffi::OsString;
|
|
|
|
|
|
| - | |
| - | |
|
|
|
|
|
@@ -163,6 +161,8 @@ pub fn run(options: Options, _ctx: impl terminal::Context) -> anyhow::Result<()>
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified bin/commands/issue.rs
@@ -11,8 +11,6 @@ use std::ffi::OsString;
|
|
|
|
|
|
| - | |
| - | |
|
|
|
|
|
@@ -126,7 +124,6 @@ impl Args for Options {
|
|
|
|
|
|
| - | |
|
|
|
|
|
@@ -157,6 +154,8 @@ pub fn run(options: Options, _ctx: impl terminal::Context) -> anyhow::Result<()>
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified bin/commands/issue/common.rs
@@ -39,4 +39,4 @@ impl Display for IssueOperation {
|
|
|
|
|
|
| - | |
|
|
| + | |
modified src/flux.rs
@@ -1,3 +1,4 @@
| + | |
|
|
|
|
|
added src/flux/event.rs
@@ -0,0 +1,5 @@
| + | |
| + | |
| + | |
| + | |
| + | |
modified src/flux/ui.rs
@@ -11,7 +11,7 @@ use std::io::{self};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -20,6 +20,7 @@ use ratatui::prelude::*;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -27,6 +28,7 @@ use super::ui::widget::{Render, Widget};
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -63,8 +65,9 @@ impl<A> Frontend<A> {
|
|
|
|
|
|
| - | |
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -73,7 +76,7 @@ impl<A> Frontend<A> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -90,7 +93,7 @@ impl<A> Frontend<A> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -106,14 +109,25 @@ fn restore_terminal(terminal: &mut Terminal<Backend>) -> anyhow::Result<()> {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|