From f32b6a19851b8b103ac843503ab008197f0639cd Mon Sep 17 00:00:00 2001 From: lukeflo Date: Thu, 24 Oct 2024 12:53:09 +0200 Subject: rearrange code again, prepare for command-action setup --- src/tui/command.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tui/command.rs') 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 . ///// -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 -- cgit v1.2.3