I have a file with hundreds of thousands of lines that start with a date, e.g.
2021-02-22...
but some odd lines do not start that way. My intention is to write a macro to find them and join them with the line above.
How can I search for such lines from within vim?
E.g., if I wanted to find the next matching line in vim, I would type
/^2021
and it would take me to the next line that starts with "2021"
I want to do this, but search for the next non-matching line.