with grep I can do a grep -v "my search" to get all the lines with out "my search"
with sed I can sed '/baz/!s/foo/bar/g' to find replace text on lines with out baz
Is there a way to do the same thing vim. And is it possible but with out the "s///" syntax. Using just the "/" search syntax.