Skip to content

Commit

Permalink
status bar feedback part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kacperacy committed May 27, 2024
1 parent 33f2cd4 commit 71442a1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pub struct App {
pub is_prompt: bool,
pub prompt: String,
prompt_cursor_position: Position,
status: String,
}

impl Default for App {
Expand All @@ -47,6 +48,7 @@ impl Default for App {
is_prompt: false,
prompt: String::new(),
prompt_cursor_position: Position { x: 0, y: 0 },
status: String::new(),
}
}
}
Expand Down

0 comments on commit 71442a1

Please sign in to comment.