1
1
Fork 0

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:
Igor 2021-05-27 10:29:50 +03:00
parent 184b550de0
commit 3ae2be8e2b
1 changed files with 2 additions and 2 deletions

View File

@ -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. |
| 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 start with selection | <span class="shortcut">&shortcut:EditorTextStartWithSelection;</span> | Move the caret to the beginning 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: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
and then copy-pasting it.