From 7f8fbbf55b50e4f7e182f210bfd51612f38432cf Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Wed, 19 Aug 2026 11:01:56 -0500 Subject: [PATCH] don't skip clearing custom header on editor failure --- nnote | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnote b/nnote index 964e3ae..3c864ce 100755 --- a/nnote +++ b/nnote @@ -44,7 +44,7 @@ else fi pushd "$NOTESDIR" > /dev/null printf "\033]2;$NOTENAME $NOTETYPE note\a" - $EDITOR "$NOTEPATH" + $EDITOR "$NOTEPATH" || true # || true so we always clear header and popd printf "\033]2;\a" popd > /dev/null fi