From 9b8ca41b15ca4f53c0f1ccd69e6135694321d854 Mon Sep 17 00:00:00 2001
From: Neil
The goto statement is not used because of bad memories from my first job diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 932d26de8..c463dc3c2 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -169,7 +169,7 @@
The GTK version also uses messages in a similar way to the Windows version. This is different to normal GTK practice but made it easier to implement rapidly.
-Scintilla also builds with Cocoa on OS X and with Qt, and follows the conventions of +
Scintilla also builds with Cocoa on macOS and with Qt, and follows the conventions of those platforms.
Scintilla provides only limited experimental support on Windows for right-to-left languages
@@ -5177,7 +5177,7 @@ struct Sci_TextToFind {
RGBA format is used for the pixmap.
The width and height must previously been set with the SCI_RGBAIMAGESETWIDTH and
SCI_RGBAIMAGESETHEIGHT messages.
A scale factor in percent may be set with SCI_RGBAIMAGESETSCALE. This is useful on OS X with
+
A scale factor in percent may be set with SCI_RGBAIMAGESETSCALE. This is useful on macOS with
a retina display where each display unit is 2 pixels: use a factor of 200 so that each image pixel is displayed using a screen pixel.
The default scale, 100, will stretch each image pixel to cover 4 screen pixels on a retina display.
Pixmaps use the SC_MARK_RGBAIMAGE marker symbol.
INDIC_SQUIGGLE that draws using a pixmap instead of
as a series of line segments for performance.
Measured to be between 3 and 6 times faster than INDIC_SQUIGGLE on GTK.
- Appearance will not be as good as INDIC_SQUIGGLE on OS X in HiDPI mode.INDIC_SQUIGGLE on macOS in HiDPI mode.
On OS X search matches are highlighted with an animated gold rounded rectangle. +
On macOS search matches are highlighted with an animated gold rounded rectangle. The indicator shows, then briefly grows 25% and shrinks to the original size to draw the user's attention. - While this feature is currently only implemented on OS X, it may be implemented on other platforms + While this feature is currently only implemented on macOS, it may be implemented on other platforms in the future.
SCI_FINDINDICATORSHOW(position start, position end)
@@ -5740,7 +5740,7 @@ struct Sci_TextToFind {
These two messages show and animate the find indicator. The indicator remains visible with
SCI_FINDINDICATORSHOW and fades out after showing for half a second with
SCI_FINDINDICATORFLASH.
- SCI_FINDINDICATORSHOW behaves similarly to the OS X TextEdit and Safari applications
+ SCI_FINDINDICATORSHOW behaves similarly to the macOS TextEdit and Safari applications
and is best suited to editing documentation where the search target is often a word.
SCI_FINDINDICATORFLASH is similar to Xcode and is suited to editing source code
where the match will often be located next to operators which would otherwise be hidden under the indicator's
@@ -6471,8 +6471,8 @@ struct Sci_TextToFind {
The SCI_SCROLLTO[START|END] commands scroll the document to the start
- or end without changing the selection. These commands match OS X platform conventions for the behaviour of the
- home and end keys. Scintilla can be made to match OS X applications
+ or end without changing the selection. These commands match macOS platform conventions for the behaviour of the
+ home and end keys. Scintilla can be made to match macOS applications
by binding the home and end keys to these commands.
The modifiers are a combination of zero or more of SCMOD_ALT,
SCMOD_CTRL, SCMOD_SHIFT,
SCMOD_META, and SCMOD_SUPER.
- On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to
+ On macOS, the Command key is mapped to SCMOD_CTRL and the Control key to
SCMOD_META.
SCMOD_SUPER is only available on GTK which is commonly the Windows key.
If you are building a table, you might
@@ -9415,7 +9415,7 @@ for line = lineStart to lineEnd do SCI_ENSUREVISIBLE(line) next
If there is no suitable platform support, the LodePNG and picoPNG libraries are small libraries
for loading and decoding PNG files available under a BSD-style license.
RGBA format is supported on Windows, GTK and OS X Cocoa.
+RGBA format is supported on Windows, GTK and macOS Cocoa.