mu4e-jump-to-list fails: "[error: unknown option -s]"
With mu 1.8.5, when trying to call mu4e-jump-to-list
, it fails with
[error: unknown option -s]
This is due to line 90, in mu4e-jump-to-list--query
:
(concat mu4e-mu-binary " --nocolor find -s date -z -f v " quoted filter)))
The issue is fixed by the changing the argument order to:
(concat mu4e-mu-binary " find --nocolor -s date -z -f v " quoted filter)))