Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse shortcut to end of line and beginning of line

What is the eclipse shortcut to move the cursor to the beginning of line or end of line'?

In vim I use '0' and '$' respectively in normal mode. The closest I have found is Shift+end and Shift+Init which does move the cursor, but also selects the whole line.

like image 818
fernandohur Avatar asked Jul 06 '13 18:07

fernandohur


People also ask

What is Ctrl Shift G in Eclipse?

Ctrl + Shift + G. Search for references in the workspace. Command + T. Ctrl + T. Shows type hierarchy of the current java class.


1 Answers

In Windows, for any editor including Eclipse, we can use following:

Go to beginning of line: Fn <-

Go to end of line: Fn ->

As mentioned in other answers, we can use Home and End keys as well for this purpose.

like image 146
Omkar Shetkar Avatar answered Oct 30 '22 10:10

Omkar Shetkar