diff options
author | Teddy Wing | 2021-03-14 05:36:15 +0100 |
---|---|---|
committer | Teddy Wing | 2021-03-14 05:36:15 +0100 |
commit | ab3715c0996d205e04bbe062e12432db960c586a (patch) | |
tree | b4ea1f2091f89f414261c746f68fc095f57a7940 /muttrc | |
parent | b819da554755713f91e23aa498932bc31fd11965 (diff) | |
download | mutt-ottolangy-ab3715c0996d205e04bbe062e12432db960c586a.tar.bz2 |
muttrc: Unset `wait_key`
Don't require a key to be pressed when using the overridden reply
macros.
Diffstat (limited to 'muttrc')
-rw-r--r-- | muttrc | 24 |
1 files changed, 18 insertions, 6 deletions
@@ -1,14 +1,26 @@ # TODO: description # TODO: license unlicense -macro index,pager r "<pipe-message>ottolangy<enter>\ +macro index,pager r "\ +<enter-command> set my_wait_key_save=\$wait_key<enter>\ +<enter-command> unset wait_key<enter>\ +<pipe-message>ottolangy<enter>\ <enter-command> source $HOME/.local/share/ottolangy/attribution.muttrc<enter>\ -<reply>" +<reply>\ +<enter-command> set wait_key=\$my_wait_key_save<enter>" -macro index,pager g "<pipe-message>ottolangy<enter>\ +macro index,pager g "\ +<enter-command> set my_wait_key_save=\$wait_key<enter>\ +<enter-command> unset wait_key<enter>\ +<pipe-message>ottolangy<enter>\ <enter-command> source $HOME/.local/share/ottolangy/attribution.muttrc<enter>\ -<group-reply>" +<group-reply>\ +<enter-command> set wait_key=\$my_wait_key_save<enter>" -macro index,pager L "<pipe-message>ottolangy<enter>\ +macro index,pager L "\ +<enter-command> set my_wait_key_save=\$wait_key<enter>\ +<enter-command> unset wait_key<enter>\ +<pipe-message>ottolangy<enter>\ <enter-command> source $HOME/.local/share/ottolangy/attribution.muttrc<enter>\ -<list-reply>" +<list-reply>\ +<enter-command> set wait_key=\$my_wait_key_save<enter>" |