diff options
| author | Neil <nyamatongwe@gmail.com> | 2021-06-10 09:21:12 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2021-06-10 09:21:12 +1000 |
| commit | c9394092df9b424b262e06139d2e4abdac8f78a3 (patch) | |
| tree | df61f9d4f10b55ef121724a1918d6ba0638b2fa5 /include/Scintilla.iface | |
| parent | b5e8caaacbd47583c79bf862e5e6a021bcfc3964 (diff) | |
| download | scintilla-mirror-c9394092df9b424b262e06139d2e4abdac8f78a3.tar.gz | |
Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting text
provided as an argument instead of from the system clipboard.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index d8e8fc21a..4cb76e3b3 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2439,8 +2439,8 @@ set void SetPasteConvertEndings=2467(bool convert,) # Get convert-on-paste setting get bool GetPasteConvertEndings=2468(,) -# Paste into a rectangular selection. -fun void PasteRectangular=2771(position length, string text) +# Replace the selection with text like a rectangular paste. +fun void ReplaceRectangular=2771(position length, string text) # Duplicate the selection. If selection empty duplicate the line containing the caret. fun void SelectionDuplicate=2469(,) |
