From 181b13c2eed7499d192d0b85c7269dc7ab71336b Mon Sep 17 00:00:00 2001
From: Neil SCI_GETUNDOSEQUENCE → int SCI_ADDUNDOACTION(int token, int flags) SCI_STYLESETINVISIBLEREPRESENTATION(int style, const char *representation)
Determine if an undo sequence is active with a positive value indicating that a sequence is active and 0 that there is no current sequence.
The value returned is the nesting depth of the sequence, that is, the number of times SCI_BEGINUNDOACTION
- was called without a correspnding SCI_ENDUNDOACTION.
+ was called without a corresponding SCI_ENDUNDOACTION.
A negative value indicates an error.
@@ -3840,8 +3840,8 @@ struct Sci_TextToFindFull {
SCI_STYLEGETINVISIBLEREPRESENTATION(int style, char *representation NUL-terminated) → int
When a style is made invisible with SCI_STYLESETVISIBLE, text is difficult to edit as
- the cursor can be at both sides of the invisible text segment. With these messages invisible text segements can be made visible with a single
- UTF8 characater giving the user an indication if the cursor is left or right of the invisible text. The character is displayed using the current style.
The representation parameter is a zero terminated string holding the one character used to represent the invisible text segment. Only the first character
is used, the character is decoded as UTF-8.
For wrapped lines Scintilla can draw visual flags (little arrows) at end of a a subline of a - wrapped line and at begin of the next subline. These can be enabled individually, but if Scintilla - draws the visual flag at the beginning of the next subline this subline will be indented by one char. - Independent from drawing a visual flag at the begin the subline can have an indention.
+For wrapped lines Scintilla can draw visual flags (little arrows) at end of a a subline of a + wrapped line and at begin of the next subline. These can be enabled individually, but if Scintilla + draws the visual flag at the beginning of the next subline this subline will be indented by one char. + Independent from drawing a visual flag at the begin the subline can have an indentation.
Much of the time used by Scintilla is spent on laying out and drawing text. The same text
layout calculations may be performed many times even when the data used in these calculations
@@ -8441,7 +8441,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
.
There are no limits on indent sizes, but values less than 0 or large values may have
undesirable effects.
- The indention of sublines is independent of visual flags, but if
+ The indentation of sublines is independent of visual flags, but if
SC_WRAPVISUALFLAG_START is set an indent of at least 1 is used.