diff options
| author | lukeflo | 2024-11-16 18:32:55 +0100 |
|---|---|---|
| committer | lukeflo | 2024-11-16 18:32:55 +0100 |
| commit | 13bb655e3d63cf9e324ca055720d2fdb65e6b76e (patch) | |
| tree | 07b29fb168d4633e25acdf2d93935bd3765b8d96 /src/bibiman.rs | |
| parent | 9c2fef5c1481d852b69ea342a38fec3eb6337524 (diff) | |
| download | bibiman-13bb655e3d63cf9e324ca055720d2fdb65e6b76e.tar.gz bibiman-13bb655e3d63cf9e324ca055720d2fdb65e6b76e.zip | |
selection popup fundament
Diffstat (limited to 'src/bibiman.rs')
| -rw-r--r-- | src/bibiman.rs | 12 |
1 files changed, 6 insertions, 6 deletions
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<FormerArea>, // 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<Self> { 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 |
