Before googling, try the doc:
From :h \%
\%(\) A pattern enclosed by escaped parentheses.
Just like \(\), but without counting it as a sub-expression. This
allows using more groups and it's a little bit faster.
{not in Vi}
And :h \@<!
\@<! Matches with zero width if the preceding atom does NOT match just
before what follows. Thus this matches if there is no position in the
current or previous line where the atom matches such that it ends just
before what follows.
Like "(?<!pattern)" in Perl, but Vim allows non-fixed-width patterns.
The match with the preceding atom is made to end just before the match
with what follows, thus an atom that ends in ".*" will work.
Warning: This can be slow (because many positions need to be checked
for a match). Use a limit if you can, see below.
Example matches ~
\(foo\)\@<!bar any "bar" that's not in "foobar"
\(\/\/.*\)\@<!in "in" which is not after "//"
:helpcan accept pattern as argument. That's very valuable info. By the way, it does doesn't have a name, doesn't it? – Mas Bagol Aug 17 '16 at 14:04pattern.txtfile has topics about these items thus they have an help tag associated (/\%(\)or/\%(orE53for the first one and/\@<!for the second one) and these tags can be used as arguments of:h. Now about their name, I'd say they are called atoms just like^or., but I'm not 100% sure. – statox Aug 17 '16 at 14:08:helpgrepis for. :) – lcd047 Aug 17 '16 at 16:03