Posts Tagged ‘new line’

Strip ^M from file in vim

Posted in vim on February 20th, 2009 by David – Be the first to comment

If there are ^M at the end of every line when you view them in vim, you can do this:
:%s/^M//g
To get the “^M” bit, hit ctrl-v and then ctrl-m.