Skip to content

Commit 2115ae6

Browse files
authored
correct Shift+Delete
1 parent 46d0f22 commit 2115ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/editing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ But with so many commands, and the fact that no documentation set is likely to e
259259
Certain keyboard-shortcuts for editing commands are "context aware", meaning that they behave differently whether there is an active selection or not. For example,
260260

261261
- `Tab` will insert a tab character or spaces (depending on [per-language settings](../preferences/#language)) when typing normally, but if you have a selection, it will indent the text by one tab-stop.
262-
- `Shift+Delete` will delete the current selection, or if there is no selection, it will delete the current line (assuming you have not changed the shortcut `Shift+DEL` from `SCI_CUT` to anything else; if you do, this functionality will _not_ be accessible). (The no-selection variant is new to v8.6.)
262+
- `Shift+Delete` will cut the current selection, or if there is no selection, it will delete the current line (assuming you have not changed the shortcut `Shift+DEL` from `SCI_CUT` to anything else; if you do, this functionality will _not_ be accessible). (Yes, it cuts to the clipboard if there's a selection, but deletes the line without affecting the clipboard if there is a selection.) (The no-selection variant is new to v8.6.)
263263
- `Ctrl+C` will copy the current selection, or if there is no selection, it will copy the current line (assuming you have not changed the shortcut `Ctrl+C` from `SCI_COPY` to anything else; if you do, this functionality will _not_ be accessible). (The no-selection variant is new to v8.6.)
264264
- `Ctrl+X` will cut the current selection, or if there is no selection, it will cut the current line (assuming you have not changed the shortcut `Ctrl+X` from `SCI_CUT` to anything else; if you do, this functionality will _not_ be accessible). (The no-selection variant is new to v8.6.)
265265

0 commit comments

Comments
 (0)