Skip to content

Commit 46d0f22

Browse files
committed
Clarify that remapping the context-aware shortcuts will eliminate the context-aware behavior
1 parent 4a918ee commit 46d0f22

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

content/docs/editing.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,10 @@ 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. (The no-selection variant is new to v8.6.)
263-
- `Ctrl+C` will copy the current selection, or if there is no selection, it will copy the current line. (The no-selection variant is new to v8.6.)
264-
- `Ctrl+X` will cut the current selection, or if there is no selection, it will cut the current line. (The no-selection variant is new to v8.6.)
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.)
263+
- `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.)
264+
- `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.)
265+
265266

266267
Again, this manual will not enumerate all the context-aware commands. The ones listed above have been deemed especially useful, or are mentioned because they were added to give Notepad++ behavior that is similar to other popular text editors and coding environments.
267268

0 commit comments

Comments
 (0)