From 9496a626c09db1141b0015d2aae7a43cb4e4a9c2 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 22 Dec 2022 21:10:56 +0100 Subject: [PATCH] Add message on successful note writing --- extract/extract.py | 1 + 1 file changed, 1 insertion(+) diff --git a/extract/extract.py b/extract/extract.py index 5a3704f..973d4eb 100644 --- a/extract/extract.py +++ b/extract/extract.py @@ -169,6 +169,7 @@ class ExtractPlugin(PapersPlugin): self._append_to_note(notepath, annotations) else: self._write_new_note(notepath, annotations) + self.ui.info(f"Wrote annotations to {paper.citekey} note {notepath}.") if edit is True: self.ui.edit_file(notepath, temporary=False)