Fix searching including hashtags

This commit is contained in:
Oliver Davies 2025-09-21 19:58:03 +01:00
parent 7e5afc2193
commit f72f97e6cd

2
zet
View file

@ -206,7 +206,7 @@ search_zettel() {
QUERY="$*" QUERY="$*"
git grep -i --name-only -P "\b$QUERY\b" | grep -o -E '[0-9]+' | sort -un git grep -i --name-only --word-regex "$QUERY" | grep -o -E '[0-9]+' | sort -un
} }
select_zet() { select_zet() {