diff options
author | Arun Isaac | 2022-06-26 01:31:13 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-26 01:31:13 +0530 |
commit | a27e3cb2975421b0cb23a4dbe3daa2f7507df055 (patch) | |
tree | bee09ed2875727e8e1adb37f1ac9e3bf9136843b /bin | |
parent | 2d67e9d3ec052383ffac8f7adaa96f2057260812 (diff) | |
download | tissue-a27e3cb2975421b0cb23a4dbe3daa2f7507df055.tar.gz tissue-a27e3cb2975421b0cb23a4dbe3daa2f7507df055.tar.lz tissue-a27e3cb2975421b0cb23a4dbe3daa2f7507df055.zip |
bin: Parse type field searches in queries.
* bin/tissue (tissue-search): Parse type field searches in queries.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/tissue | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -185,7 +185,8 @@ Search issues using SEARCH-QUERY. ((string-contains-ci query-string "is:") query-string) (else (format #f "is:open AND (~a)" query-string))) #:stemmer stemmer - #:prefixes '(("title" . "S") + #:prefixes '(("type" . "XT") + ("title" . "S") ("creator" . "A") ("last-updater" . "XA") ("updater" . "XA") |