From 4d51a50adbb51800b2983874f2320508a2ac4700 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 4 Aug 2025 14:54:52 -0500 Subject: [PATCH 1/2] default build command is just b r --- .dir-locals.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.dir-locals.el b/.dir-locals.el index 625439e..044d291 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,5 +1,5 @@ ;;; Directory Local Variables -*- no-byte-compile: t -*- ;;; For more information see (info "(emacs) Directory Variables") -((nil . ((compile-command . "just build"))) - (prog-mode . ((compile-command . "just build")))) +((nil . ((compile-command . "just b r"))) + (prog-mode . ((compile-command . "just b r")))) From c254c83875a7d220677691a4c466bc49ddb9fbbd Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 4 Aug 2025 14:55:16 -0500 Subject: [PATCH 2/2] hide focus changes by default and only turn them on when debugging --- src/qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 5de3d3d..f1d897d 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -27,7 +27,7 @@ Kirigami.ApplicationWindow { signal edit() - onActiveFocusItemChanged: console.log("FOCUS CHANGED TO: " + activeFocusControl) + /* onActiveFocusItemChanged: console.log("FOCUS CHANGED TO: " + activeFocusControl) */ onClosing: mainPage.closeAll() /* pageStack.initialPage: mainPage */