NeoVintageous 1.25.0
NeoVintageous 1.25.0 has been released. This was a small release that aded support for inverse global-commands.
Global commands
:[range]g[lobal]/{pattern}/[cmd]Execute the Ex command [cmd] (default ":p") on the lines within [range] where {pattern} matches.
:[range]g[lobal]!/{pattern}/[cmd]Execute the Ex command [cmd] (default ":p") on the lines within [range] where {pattern} does NOT match.
Examples
Print lines that contain the word "fizz":
:g/fizz/pDelete lines that start with a digit:
:g/^\d/dTo invert the search append !.
Print lines that don't contain the word "fizz":
:g!/fizz/pDelete lines that don't start with a digit:
:g!/^\d/d