是否可以添加参数不多需要 .notmuch-config 文件吗?--sort=oldest-first
如果默认设置为notmuch search
命令,像这样的参数会非常有用。
我的解决方法是在 .zshrc 中覆盖它,但如果 notmuch 项目中直接支持它就太好了:
notmuch() {
if [[ $1 == "search" ]]; then
# remove "search" from "$@"
shift 1
command notmuch search --sort=oldest-first "$@"
else
command notmuch "$@"
fi
}
我尝试过notmuch config set search.sort oldest-first
,但是没有效果。