From d1c33200bcc493c55429382c688f297f6879f4f3 Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 26 Jun 2025 23:42:10 +0200 Subject: [PATCH] feat(notes, journal): clear console after edit --- journal.sh | 1 + notes.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/journal.sh b/journal.sh index 5657f63..2280e9e 100755 --- a/journal.sh +++ b/journal.sh @@ -54,5 +54,6 @@ elif [ "$1" = "copy" ] || [ "$1" = "c" ]; then ## New entry or edit else createEntry + clear fi notesSync diff --git a/notes.sh b/notes.sh index d23935a..e1bf8f7 100755 --- a/notes.sh +++ b/notes.sh @@ -22,6 +22,7 @@ function editFile() { vim "$1" fi + clear notesSync }