From 13bb655e3d63cf9e324ca055720d2fdb65e6b76e Mon Sep 17 00:00:00 2001 From: lukeflo Date: Sat, 16 Nov 2024 18:32:55 +0100 Subject: selection popup fundament --- src/bibiman.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/bibiman.rs') diff --git a/src/bibiman.rs b/src/bibiman.rs index 0993b76..767dec1 100644 --- a/src/bibiman.rs +++ b/src/bibiman.rs @@ -54,7 +54,7 @@ pub enum FormerArea { // Application. #[derive(Debug)] -pub struct Bibiman<'a> { +pub struct Bibiman { // main bib file pub main_bibfile: PathBuf, // main bibliography @@ -72,10 +72,10 @@ pub struct Bibiman<'a> { // mode for popup window pub former_area: Option, // active popup - pub popup_area: PopupArea<'a>, + pub popup_area: PopupArea, } -impl Bibiman<'_> { +impl Bibiman { // Constructs a new instance of [`App`]. pub fn new(args: CLIArgs) -> Result { let main_bibfile = args.bibfilearg; @@ -185,7 +185,7 @@ impl Bibiman<'_> { } } -impl Bibiman<'_> { +impl Bibiman { // Entry Table commands /// Select next entry in Table holding the bibliographic entries. @@ -453,7 +453,7 @@ impl Bibiman<'_> { } } -impl Bibiman<'_> { +impl Bibiman { // Tag List commands // Movement @@ -556,7 +556,7 @@ impl Bibiman<'_> { } } -impl Bibiman<'_> { +impl Bibiman { // Search Area // Enter the search area -- cgit v1.2.3