From 8bde3bb597f4a67590c30c01799c017e99c76c99 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Sat, 18 Sep 2021 18:00:42 +0200 Subject: Improved aliases for a ticket tracker --- docs/examples/ticket_tracker/aliases.sh | 6 +++--- 1 file 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" -- cgit v1.2.3