Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 95cecdd

Browse files
fix(filter): Fix tags agenda view matcher to allow -tags at start
1 parent d62fd3c commit 95cecdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/orgmode/files/elements/search.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ function PropertyMatch:parse(input)
371371
local name, operator, string_str, number_str, date_str
372372
local original_input = input
373373

374-
name, input = parse_pattern(input, '[^=<>]+')
374+
name, input = parse_pattern(input, '([^%-%+=<>]+)[=<>]+')
375375
if not name then
376376
return nil, original_input
377377
end

0 commit comments

Comments
 (0)