My vim buffer contains lines with more then one sentence.
How can I make each sentence start on an new line? I do not want to insert extra empty lines between sentences that already start on a new line.
I can replace each . by .\n %s/\./\.\n/
but that insert a new line also when there already is a new line after a sentence.
Edit: If the line starts with % then I want to leave that line as it is.