|
Some of those shortcuts are different, depending on which shortcut scheme you are using (initially set via the "default collection of settings"). The most prominent example is your first one:
Build solution is Ctrl + Shift + B in Visual C++ mode, and F6 in Visual C# mode.
|
|
|
|
|
Shift + End = Select the entire line from start to end
Actually, Select from the current cursor position to the end of the line.
Shift + Home = Select the entire line from end to start
Similarly, Select from the current cursor position to the start of the line.
But this overlooks the larger scheme of selecting. There are certain keys which move the cursor (Up, Down, home, End, PgUp etc)
In general, Holding "Ctrl" with a cursor movement key, mean "Make it bigger". So, "End" bring you to the end of the line; Ctrl-End brings you to the end of the document. Right-Arrow moves to the right character-by-character; Ctrl-Right-Arrow moves to the right word-by-word.
And, in general, holding Shift with any of those keys (with or without the Ctrl) means "select the text as you move", so "End" moves the cursor from it's current spot to the end of the line, while Shift-End selects that text (while moving to the end of the line), and Shift-Ctrl-End selects from the current location to the end of the document.
Truth,
James
|
|
|
|