fix(Programming Basics - Hello, World - Exercise 5): Shortcuts for line start/end fixed
The shortcut links in the description were fixed to match their description: EditorTextStartWithSelection -> EditorLineStartWithSelection EditorTextEndWithSelection -> EditorLineEndWithSelection The decision to fix the links not the descriptions is based on the task itself being to select a line, not the whole text. Closes https://youtrack.jetbrains.com/issue/EDC-413
This commit is contained in:
parent
184b550de0
commit
3ae2be8e2b
|
@ -18,8 +18,8 @@ the beginning of a line:
|
||||||
|-----------------------------------|-----------------------------------------------------------------------|----------------------------------------------------------------|
|
|-----------------------------------|-----------------------------------------------------------------------|----------------------------------------------------------------|
|
||||||
| Up with selection | <span class="shortcut">&shortcut:EditorUpWithSelection;</span> | Move the caret one line up, selecting the text. |
|
| Up with selection | <span class="shortcut">&shortcut:EditorUpWithSelection;</span> | Move the caret one line up, selecting the text. |
|
||||||
| Right with selection | <span class="shortcut">&shortcut:EditorRightWithSelection;</span> | Move the caret one character to the right, selecting the text. |
|
| Right with selection | <span class="shortcut">&shortcut:EditorRightWithSelection;</span> | Move the caret one character to the right, selecting the text. |
|
||||||
| Move to line end with selection | <span class="shortcut">&shortcut:EditorTextEndWithSelection;</span> | Move the caret to the end of line, selecting the text. |
|
| Move to line end with selection | <span class="shortcut">&shortcut:EditorLineEndWithSelection;</span> | Move the caret to the end of line, selecting the text. |
|
||||||
| Move to line start with selection | <span class="shortcut">&shortcut:EditorTextStartWithSelection;</span> | Move the caret to the beginning of line, selecting the text. |
|
| Move to line start with selection | <span class="shortcut">&shortcut:EditorLineStartWithSelection;</span> | Move the caret to the beginning of line, selecting the text. |
|
||||||
|
|
||||||
Duplicate the line `println("Hello, Kotlin!")` in the example by selecting it
|
Duplicate the line `println("Hello, Kotlin!")` in the example by selecting it
|
||||||
and then copy-pasting it.
|
and then copy-pasting it.
|
||||||
|
|
Loading…
Reference in New Issue