Help: Clarified attribute modifiers in help
This commit is contained in:
@@ -933,21 +933,27 @@
|
||||
" end: Data di completamento/cancellazione del task\n" \
|
||||
" start: Data di inizio del task\n" \
|
||||
" scheduled: Data prevista per l'avvio del task\n" \
|
||||
" modified: Date task was last modified\n" \
|
||||
" depends: Altri task dai quali dipende il task\n" \
|
||||
"\n" \
|
||||
"I modificatori rendono i filtri più precisi. Modificatori supportati sono:\n" \
|
||||
" before (sinomimi: under, below)\n" \
|
||||
" after (sinomimi: over, above)\n" \
|
||||
" none\n" \
|
||||
" any\n" \
|
||||
" is (sinomimo: equals)\n" \
|
||||
" isnt (sinomimo: not)\n" \
|
||||
" has (sinomimo: contains)\n" \
|
||||
" hasnt\n" \
|
||||
" startswith (sinomimo: left)\n" \
|
||||
" endswith (sinomimo: right)\n" \
|
||||
" word\n" \
|
||||
" noword\n" \
|
||||
"\n" \
|
||||
" Modifiers Example Equivalent Meaning\n" \
|
||||
" ---------------- ----------------- ------------------- -------------------------\n" \
|
||||
" due:today due = today Fuzzy match\n" \
|
||||
" not due.not:today due != today Fuzzy non-match\n" \
|
||||
" before, below due.before:today due < tomorrow Exact date comparison\n" \
|
||||
" after, above due.after:today due > tomorrow Exact date comparison\n" \
|
||||
" none project.none: project == '' Empty\n" \
|
||||
" any project.any: project !== '' Not empty\n" \
|
||||
" is, equals project.is:x project == x Exact match\n" \
|
||||
" isnt project.isnt:x project !== x Exact non-match\n" \
|
||||
" has, contains desc.has:Hello desc ~ Hello Pattern match\n" \
|
||||
" hasnt, desc.hasnt:Hello desc !~ Hello Pattern non-match\n" \
|
||||
" startswith, left desc.left:Hel desc ~ '^Hel' Beginning match\n" \
|
||||
" endswith, right desc.right:llo desc ~ 'llo$' End match\n" \
|
||||
" word desc.word:Hello desc ~ '\\bHello\\b' Boundaried word match\n" \
|
||||
" noword desc.noword:Hello desc !~ '\\bHello\\b' Boundaried word non-match\n" \
|
||||
"\n" \
|
||||
"Sono supportati i seguenti operatori:\n" \
|
||||
" and or xor Operatori logici\n" \
|
||||
|
||||
Reference in New Issue
Block a user