I want insert newlines in normal mode in vim using Shift-Enter and Ctrl-Enter. I try some solutions and mixing solutions from Vim Wikia - Insert newline wi
I use :s/\n/\r\r/g (subsitute the newline with two newlines, which is the same as "o").