From a410753d70b1975f080d66169463c926481e20e9 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Thu, 20 Aug 2026 11:40:13 -0300 Subject: [PATCH] feat(aerc): bind F to toggle the flagged flag aerc ships no default keybind for :flag, so marking a message as important meant typing the command. F was free in both messages and view ('f' is :forward). Assisted-by: pi (claude-opus-5) --- home/gabriel/features/productivity/aerc.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/gabriel/features/productivity/aerc.nix b/home/gabriel/features/productivity/aerc.nix index 30d2b9bc..2b146785 100644 --- a/home/gabriel/features/productivity/aerc.nix +++ b/home/gabriel/features/productivity/aerc.nix @@ -25,6 +25,7 @@ in { }; messages = { D = ":move Trash"; + F = ":flag -t -x flagged"; G = ""; V = ""; X = ":mark -v"; @@ -38,6 +39,7 @@ in { }; view = { D = ":move Trash"; + F = ":flag -t -x flagged"; d = ":move Trash"; }; };