I know how to remove ^M in my files (%s/^M//g), but this one is just one line I\'d like to replace ^M with enter... what\'s the enter char
^M
%s/^M//g
In vim session try:
:%s/^M//g
Where ^M is achieved by ctrl+V+M keystrokes together.
ctrl+V+M