Main operation: suppose 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, excluding spaces between the two
datacontour(set_color=set_color, figout="test", figext="pdf")
What is the easiest way to do this? or what shortcut should i define in the vimrc file? Thanks.
source share