You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Flag ordering:** Options like `--regex`, `--fg`, `--bg`, and `-l`must be placed **before** the pattern. Everything after the first pattern word is treated as part of the pattern.
39
+
> **Flag ordering:** Options (`-r`, `--fg`, `--bg`, `-l`, `--field`) must appear **before** the pattern. Everything after the first pattern word is part of the pattern.
34
40
>
35
41
> ```sh
36
-
> :filter --fg red -r "timeout.*retry"# correct
37
-
> :filter "timeout.*retry" --fg red #incorrect — "--fg" becomes part of the pattern
42
+
> :filter --fg red -r timeout.*retry # correct
43
+
> :filter timeout.*retry --fg red #wrong — "--fg" becomes part of the pattern
description:"Add an include filter. With --field, pattern is key=value scoped to a parsed field. e.g. filter --fg Red error, filter --field level=error, filter --field component=auth",
0 commit comments