summaryrefslogtreecommitdiffstats
path: root/completion
diff options
context:
space:
mode:
authorJani Nikula <jani@nikula.org>2015-10-18 00:03:35 +0300
committerDavid Bremner <david@tethera.net>2015-10-21 21:30:15 -0300
commit4cff5a9f98f3c7bdb58f8929dca83fa2d3af9c75 (patch)
treeaed0a329da8e5bb3a5fcdfe5bfaf200dd92dd3ee /completion
parent23180439cb632e5565e9e3dfd8172c997262bf4c (diff)
completion: complete lastmod: search prefix
Diffstat (limited to 'completion')
-rw-r--r--completion/notmuch-completion.bash2
1 files changed, 1 insertions, 1 deletions
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}) )
;;