diff options
author | Neil <nyamatongwe@gmail.com> | 2015-06-24 15:27:07 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-06-24 15:27:07 +1000 |
commit | ad0155fa7c53f9d3d50f21f9de9181f50cda7d88 (patch) | |
tree | 955e0dcfb030f1a5c30a0c4f8c8302feea976a81 /src/Selection.h | |
parent | 93e72ff752dcbb9d868ac451ac90bcbab1e57243 (diff) | |
download | scintilla-mirror-ad0155fa7c53f9d3d50f21f9de9181f50cda7d88.tar.gz |
Make multiple selection work over most cursor movement and selection, new line,
and word and line part deletion commands.
Diffstat (limited to 'src/Selection.h')
-rw-r--r-- | src/Selection.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Selection.h b/src/Selection.h index 166e3fa71..22c01beff 100644 --- a/src/Selection.h +++ b/src/Selection.h @@ -168,6 +168,7 @@ public: int Length() const; void MovePositions(bool insertion, int startChange, int length); void TrimSelection(SelectionRange range); + void TrimOtherSelections(size_t r, SelectionRange range); void SetSelection(SelectionRange range); void AddSelection(SelectionRange range); void AddSelectionWithoutTrim(SelectionRange range); |