I'm looking for the best way to append the previous line to the current line like this:
# Bazzy Comment
foo = 'bar'
To this:
foo = 'bar' # Bazzy Comment
Currently I can do this:
From top line dd,p,k,Shift+J
Yank Link, paste, move cursor up, Join Lines
Basically I'm looking for a backward line join. I feel like there must be a better way to do this.