diff options
| author | lukeflo | 2024-10-24 12:53:09 +0200 |
|---|---|---|
| committer | lukeflo | 2024-10-24 12:53:09 +0200 |
| commit | f32b6a19851b8b103ac843503ab008197f0639cd (patch) | |
| tree | 49216019cf71b4c3161eb5b1a74d9ee7e06eceb0 /src/tui/command.rs | |
| parent | 66402a9c23e0975a8a3d8c2707b689b9cde98ccf (diff) | |
| download | bibiman-f32b6a19851b8b103ac843503ab008197f0639cd.tar.gz bibiman-f32b6a19851b8b103ac843503ab008197f0639cd.zip | |
rearrange code again, prepare for command-action setup
Diffstat (limited to 'src/tui/command.rs')
| -rw-r--r-- | src/tui/command.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tui/command.rs b/src/tui/command.rs index 9f25f5f..8416a3e 100644 --- a/src/tui/command.rs +++ b/src/tui/command.rs @@ -15,9 +15,9 @@ // along with this program. If not, see <https://www.gnu.org/licenses/>. ///// -use crate::bib::entries::EntryTableColumn; -use crate::bib::search::BibiSearch; -use crate::tui::app::{App, FormerArea}; +use crate::bibiman::entries::EntryTableColumn; +use crate::bibiman::search::BibiSearch; +use crate::bibiman::{Bibiman, FormerArea}; use crate::tui::Tui; use color_eyre::eyre::{Context, Ok, Result}; use core::panic; @@ -25,7 +25,7 @@ use editor_command::EditorBuilder; use ratatui::widgets::ScrollbarState; use std::process::{Command, Stdio}; -impl App { +impl Bibiman { // Entry Table commands // Movement @@ -260,7 +260,7 @@ impl App { } } -impl App { +impl Bibiman { // Tag List commands // Movement |
