aboutsummaryrefslogtreecommitdiff
path: root/src/app.rs
diff options
context:
space:
mode:
authorlukeflo2025-05-24 17:31:33 +0200
committerlukeflo2025-05-24 17:31:33 +0200
commit28030fd0830478872be2b9e86b74e0c054a96111 (patch)
tree1d5029f00bc42a81378529816eaf55e162b9ce4f /src/app.rs
parent7fe5acb85b9e665ec83f590942ee78b8c90d6aae (diff)
downloadbibiman-28030fd0830478872be2b9e86b74e0c054a96111.tar.gz
bibiman-28030fd0830478872be2b9e86b74e0c054a96111.zip
implemented a workflow, but citekey matching still buggy
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.rs b/src/app.rs
index 88f37b0..e0c149c 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -277,7 +277,7 @@ impl App {
self.bibiman.open_connected_res(cfg)?;
} else if let Some(PopupKind::AppendToFile) = self.bibiman.popup_area.popup_kind
{
- self.bibiman.append_entry_to_file()?
+ self.bibiman.append_entry_to_file(cfg)?
} else if let Some(PopupKind::YankItem) = self.bibiman.popup_area.popup_kind {
self.bibiman.yank_entry_field()?
}