An entire line can be selected by triple-clicking with the mouse,
or using the
C+e l
).
A selection that begins and ends on line boundaries can be created
by triple-clicking and dragging.
C+l
) prompts
for a line number and moves the caret there.
C+e C+l
)
prompts for two line numbers and selects all text between them.
C+d
)
deletes the current line.
CS+BACK_SPACE
)
deletes all text from the start of the current line to the caret.
CS+DELETE
) deletes
all text from the caret to the end of the current line.
C+j
)
removes any whitespace from the start of the next line and joins it with
the current line.
The caret is moved to the position where the two lines were joined.
For example, if you invoke
with the caret on the first line of the following Java code:
new Widget(Foo .createDefaultFoo());
It will be changed to:
new Widget(Foo.createDefaultFoo());