:g/[ ^\t]if\|[ ^\t]fi/print
BIGFATOROPERATOR is \|. It’s called the alternation operator. In PCRE, it’s plain |. It’s escaped in Vim/ex because | is used elsewhere for general commands (or something — FIXME).
:g/[ ^\t]if\|[ ^\t]fi/print
BIGFATOROPERATOR is \|. It’s called the alternation operator. In PCRE, it’s plain |. It’s escaped in Vim/ex because | is used elsewhere for general commands (or something — FIXME).