The basic operation is, imagine I have two lines of python codes in the opening buffer
datacontour(set_color=set_color, figout="test",
figext="pdf")
the second line is indented by 8 spaces because it is a continuation of the first line, now I want to combine both lines together, eliminating the spaces between the two
datacontour(set_color=set_color, figout="test", figext="pdf")
What is the easiest way to do this? or what kind of shortcut I should define in the vimrc file? Thanks.
Press J from the line ‘dataContour…’
The next line will be merged to the current line.