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)
This commit is contained in:
Gabriel Fontes
2026-08-20 11:41:33 -03:00
parent 2cb0cd6487
commit a410753d70
@@ -25,6 +25,7 @@ in {
}; };
messages = { messages = {
D = ":move Trash<Enter>"; D = ":move Trash<Enter>";
F = ":flag -t -x flagged<Enter>";
G = ""; G = "";
V = ""; V = "";
X = ":mark -v<Enter>"; X = ":mark -v<Enter>";
@@ -38,6 +39,7 @@ in {
}; };
view = { view = {
D = ":move Trash<Enter>"; D = ":move Trash<Enter>";
F = ":flag -t -x flagged<Enter>";
d = ":move Trash<Enter>"; d = ":move Trash<Enter>";
}; };
}; };