monocle
monocle copied to clipboard
The "add filter" should be smarter when adding a key that already exists
For instance adding multiple time "state" will append the state:
Instead the behavior should be to modify the query this way:
- state:open and author:"John Doe" -> (state:open or state:merged) and author:"John Doe"
This is not so simple to do, in the linked PR it can do: state:open and author:"John Doe" -> state:merged and author:"John Doe"
Ok, turns out adding a filter as you proposed is actually simpler :-)