From 4040c66fc31c7e537d063c65ed1e734e974250c2 Mon Sep 17 00:00:00 2001 From: Martijn Laan <1092369+martijnlaan@users.noreply.github.com> Date: Thu, 20 Jun 2024 08:23:46 +1000 Subject: Feature [feature-requests:#1518]. Cherry pick SCI_CUTALLOWLINE from isscint. --- doc/ScintillaDoc.html | 7 +++++++ doc/ScintillaHistory.html | 5 +++++ 2 files changed, 12 insertions(+) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 5417fa8dd..ed8db883d 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1852,6 +1852,7 @@ struct Sci_TextToFindFull { SCI_COPYRANGE(position start, position end)
SCI_COPYTEXT(position length, const char *text)
SCI_COPYALLOWLINE
+ SCI_CUTALLOWLINE
SCI_SETPASTECONVERTENDINGS(bool convert)
SCI_GETPASTECONVERTENDINGS → bool
SCI_REPLACERECTANGULAR(position length, const char *text)
@@ -1863,6 +1864,7 @@ struct Sci_TextToFindFull { SCI_CLEAR
SCI_CANPASTE → bool
SCI_COPYALLOWLINE
+ SCI_CUTALLOWLINE
These commands perform the standard tasks of cutting and copying data to the clipboard, pasting from the clipboard into the document, and clearing the document. SCI_CANPASTE returns non-zero if the document isn't read-only and if the selection @@ -1880,6 +1882,11 @@ struct Sci_TextToFindFull {

SCI_COPYALLOWLINE works the same as SCI_COPY except that if the selection is empty then the current line is copied. On Windows, an extra "MSDEVLineSelect" marker is added to the clipboard which is then used in SCI_PASTE to paste + the whole line before the current line.

+ +

SCI_CUTALLOWLINE works the same as SCI_CUT except that if the + selection is empty then the current line is cut. On Windows, an extra "MSDEVLineSelect" marker + is added to the clipboard which is then used in SCI_PASTE to paste the whole line before the current line.

SCI_COPYRANGE(position start, position end)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 3bf4c94fb..4b0358ed4 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -580,6 +580,7 @@ Chengzhi Li Gary James Tsuyoshi Miyake + Martijn Laan

Releases

@@ -591,6 +592,10 @@ Released 23 April 2024.
  • + SCI_CUTALLOWLINE added which is similar to SCI_COPYALLOWLINE but also deletes the copied text. + Feature #1518. +
  • +
  • Increase maximum zoom set interactively to +60 points. Feature #1517.
  • -- cgit v1.2.3