From 672b30f73d556b09af3dc4d3afdc5ad24b841a44 Mon Sep 17 00:00:00 2001
From: nyamatongwe Scintilla has multiple level undo and redo. It will continue to collect undoable actions
until memory runs out. Scintilla saves actions that change the document. Scintilla does not
save caret and selection movements, view scrolling and the like. Sequences of typing or
- deleting are compressed into single actions to make it easier to undo and redo at a sensible
- level of detail. Sequences of actions can be combined into actions that are undone as a unit.
+ deleting are compressed into single transactions to make it easier to undo and redo at a sensible
+ level of detail. Sequences of actions can be combined into transactions that are undone as a unit.
These sequences occur between SCI_BEGINUNDOACTION and
- SCI_ENDUNDOACTION messages. These sequences can be nested and only the top-level
+ SCI_ENDUNDOACTION messages. These transactions can be nested and only the top-level
sequences are undone as units.
@@ -2419,7 +2419,7 @@ struct TextToFind {
normal Unicode encoding before being drawn by the OS and thus can display Hebrew, Arabic,
Cyrillic, and Han characters. Languages which can use two characters stacked vertically in one
horizontal space, such as Thai, will mostly work but there are some issues where the characters
- are drawn separately leading to visual glitches. Bi-directional text is not supported. Characters outside the
+ are drawn separately leading to visual glitches. Bi-directional text is not supported. Characters outside the
Basic Multilingual Plane are unlikely to work.
On Windows, code page can be set to 932 (Japanese Shift-JIS), 936 (Simplified Chinese GBK), @@ -4841,7 +4841,7 @@ href="#SCI_POSITIONFROMLINE">SCI_POSITIONFROMLINE(lineNumber);
SC_STARTACTIONSC_MODEVENTMASKALL