feat(notes, journal): clear console after edit

This commit is contained in:
Ayo Ayco 2025-06-26 23:42:10 +02:00
parent fa9b75e9af
commit d1c33200bc
2 changed files with 2 additions and 0 deletions

View file

@ -54,5 +54,6 @@ elif [ "$1" = "copy" ] || [ "$1" = "c" ]; then
## New entry or edit ## New entry or edit
else else
createEntry createEntry
clear
fi fi
notesSync notesSync

View file

@ -22,6 +22,7 @@ function editFile() {
vim "$1" vim "$1"
fi fi
clear
notesSync notesSync
} }