From: Jani Nikula Date: Sat, 17 Oct 2015 21:03:35 +0000 (+0300) Subject: completion: complete lastmod: search prefix X-Git-Tag: 0.21_rc3~4 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=4cff5a9f98f3c7bdb58f8929dca83fa2d3af9c75;hp=23180439cb632e5565e9e3dfd8172c997262bf4c completion: complete lastmod: search prefix --- diff --git a/completion/notmuch-completion.bash b/completion/notmuch-completion.bash index f24d9ecd..cc583924 100644 --- a/completion/notmuch-completion.bash +++ b/completion/notmuch-completion.bash @@ -86,7 +86,7 @@ _notmuch_search_terms() sed "s|^$path/||" | grep -v "\(^\|/\)\(cur\|new\|tmp\)$" ) ) ;; *) - local search_terms="from: to: subject: attachment: mimetype: tag: id: thread: folder: path: date:" + local search_terms="from: to: subject: attachment: mimetype: tag: id: thread: folder: path: date: lastmod:" compopt -o nospace COMPREPLY=( $(compgen -W "${search_terms}" -- ${cur}) ) ;;