diff options
-rwxr-xr-x | docs/examples/ticket_tracker/aliases.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/ticket_tracker/aliases.sh b/docs/examples/ticket_tracker/aliases.sh index e2371e1..e469f55 100755 --- a/docs/examples/ticket_tracker/aliases.sh +++ b/docs/examples/ticket_tracker/aliases.sh @@ -1,8 +1,8 @@ #!/bin/sh -LTT_STS_OPEN='status:planned status:ready status:"in progress" status:comments' -LTT_STS_ACTIVE='status:"in progress" status:comments' -LTT_STS_CLOSED='status:done status:invalid' +LTT_STS_OPEN='\(status:planned OR status:ready OR status:"in progress" OR status:comments\)' +LTT_STS_ACTIVE='\(status:"in progress" OR status:comments\)' +LTT_STS_CLOSED='\(status:done OR status:invalid\)' alias ltt-s-open="lesana search $LTT_STS_OPEN" alias ltt-s-active="lesana search $LTT_STS_ACTIVE" |