Reputation: 3037
I'm learning to really like vi, and can't stand writing code in netbeans anymore without being able to jump to the end of a line. It's killing me, and I can't find it in the shorcuts or even how to add it. Does anyone know what it is?
Upvotes: 10
Views: 6571
Reputation: 873
U Can Use Ctrl+;
to add semicolon at the end of Line and still in your position
Or
Ctrl+Shift+;
to add semicolon at the end of line and change position to new line.
Upvotes: 3
Reputation: 36562
Go to Tools : Options : Keymap and search for "Insertion Point to End of Line" which mysteriously defaults to the End
key. ;) You should be able to reassign any other shortcut to it.
Upvotes: 7