aboutsummaryrefslogtreecommitdiffstats
path: root/src/querycompleter.cpp
AgeCommit message (Collapse)AuthorFilesLines
7 hoursfeat(completion): add the prefix, date and mimetype vocabulariesDanilo M.1-0/+60
Keywords are syntax and stay untranslated; the descriptions beside them are prose and go through tr(). The tables are free functions with no QObject to inherit tr() from, so the file declares a VocabularyStrings context with Q_DECLARE_TR_FUNCTIONS rather than borrowing QObject::tr, which would file every string under the QObject context.
7 hoursfeat(completion): complete both bounds of a date rangeDanilo M.1-7/+56
Each side of '..' is an independent value against the same model. Entries that are themselves ranges are withheld once a range exists, since date:1week....today is malformed. The token is read to its full extent rather than truncated at the caret: the separator deciding which bound is being edited can sit to the right of the caret. Stems stay caret-bounded so matching never uses untyped text.
7 hoursfeat(completion): complete nothing inside a quoted literalDanilo M.1-0/+15
subject:"foo bar has the cursor in free text, where offering keywords would be wrong.
7 hoursfeat(completion): recognise value context after a prefixDanilo M.1-4/+14
The replace span covers the value only, so accepting a completion never overwrites the prefix that selected it.
7 hoursfeat(completion): add the query cursor-context tokenizerDanilo M.1-0/+54
Prefix completion only so far: the token under the cursor, bounded by whitespace or an opening parenthesis rather than by the start of the line.