aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ScintillaDoc.html11
-rw-r--r--doc/ScintillaHistory.html15
2 files changed, 25 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 080cea361..154747cc5 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -1646,6 +1646,9 @@ struct Sci_TextToFind {
Any selection apart from the main selection is called an additional selection.
The calls in the previous section operate on the main selection.
There is always at least one selection.
+ The selection can be simplified down to just the main selection by
+ <a class="message" href="#SCI_CANCEL"><code>SCI_CANCEL</code></a>
+ which is normally mapped to the Esc key.
</p>
<p>
@@ -1673,7 +1676,9 @@ struct Sci_TextToFind {
<p>
<b id="SCI_SETADDITIONALSELECTIONTYPING">SCI_SETADDITIONALSELECTIONTYPING(bool additionalSelectionTyping)</b><br />
<b id="SCI_GETADDITIONALSELECTIONTYPING">SCI_GETADDITIONALSELECTIONTYPING</b><br />
- Whether typing, backspace, or delete works with multiple selections simultaneously.</p>
+ Whether typing, new line, cursor left/right/up/down, backspace, delete, home, and end work
+ with multiple selections simultaneously.
+ Also allows selection and word and line deletion commands.</p>
<p>
<b id="SCI_SETMULTIPASTE">SCI_SETMULTIPASTE(int multiPaste)</b><br />
@@ -4967,6 +4972,10 @@ struct Sci_TextToFind {
by binding the <code>home</code> and <code>end</code> keys to these commands.
</p>
+ <p class="message" id="SCI_CANCEL">The <code>SCI_CANCEL</code> command cancels autocompletion and
+ calltip display and drops any additional selections.
+ </p>
+
<h2 id="KeyBindings">Key bindings</h2>
<p>There is a default binding of keys to commands that is defined in the Scintilla source in
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index 3529c188b..bf198b900 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -484,6 +484,21 @@
</li>
</ul>
<h3>
+ <a href="http://prdownloads.sourceforge.net/scintilla/scite360.zip?download">Release 3.6.0</a>
+ </h3>
+ <ul>
+ <li>
+ Released 20 June 2015.
+ </li>
+ <li>
+ Multiple selection now works over more key commands.
+ The new multiple-selection handling commands include horizontal movement and selection commands,
+ line up and down movement and selection commands, word and line deletion commands, and
+ line end insertion.
+ This change in behaviours is conditional on setting the SCI_SETADDITIONALSELECTIONTYPING property.
+ </li>
+ </ul>
+ <h3>
<a href="http://prdownloads.sourceforge.net/scintilla/scite357.zip?download">Release 3.5.7</a>
</h3>
<ul>