diff --git a/org-ql.el b/org-ql.el index e179d07..193592a 100644 --- a/org-ql.el +++ b/org-ql.el @@ -153,7 +153,8 @@ regexps.") (defvar org-ql-regexp-part-ts-repeaters ;; Repeaters (not sure if the colon is necessary, but it's in the org.el one) - (rx (repeat 1 2 (seq " " (repeat 1 2 (any "-+:.")) (1+ digit) (any "hdwmy")))) + (rx (repeat 1 2 (seq " " (repeat 1 2 (any "-+:.")) (1+ digit) (any "hdwmy") + (optional "/" (1+ digit) (any "hdwmy"))))) "Matches the repeater part of an Org timestamp. Includes leading space character.")