A quick way to select a row in netBeans

I am looking for a quick way to select a row in netBeans.

For example, to copy and paste. (in the vim editor, the yycurrent current line)

+5
source share
3 answers

I have been using Netbeans for several months.

Ctrl + c copies the entire line without selecting it.

Ctrl + e will delete the line without selecting it.

Ctrl + Shift + down or up arrows will duplicate the line.

+6
source

Most graphical interfaces, including Netbeans, allow you to select a word by double-clicking on it and the entire line by triple-clicking on it.

OR

selection-end-line (Shift + End) select-down (SHIFT + Down) for any number of rows.

+5
source

I was late for this post, but with a solution. In netbeans 8.xgo to Tools → Options → Key. . In this case, find Select Line. You will get a record there. Under the box Shortcutyou can give a convenient shortcut. There is no shortcut by default

0
source

All Articles