diff options
| author | mitchell <70453897+667e-11@users.noreply.github.com> | 2020-09-09 23:41:24 -0400 |
|---|---|---|
| committer | mitchell <70453897+667e-11@users.noreply.github.com> | 2020-09-09 23:41:24 -0400 |
| commit | 9ec5dc184d3095ea6c091ecd326e459c7caf2ca7 (patch) | |
| tree | 5b0f8425f7aad7fe1d434812fe24be656d0cafce /include | |
| parent | a0b3f49afb6107c33582dc2c1fcace558c0d1f2c (diff) | |
| download | scintilla-mirror-9ec5dc184d3095ea6c091ecd326e459c7caf2ca7.tar.gz | |
Backport: Feature [feature-requests:1350]. Add SCI_GETMULTIEDGECOLUMN.
Backport of changeset 8507:e72e8cf58ea7.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 32012c5f6..6f59d4e27 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -705,6 +705,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETEDGECOLOUR 2365 #define SCI_MULTIEDGEADDLINE 2694 #define SCI_MULTIEDGECLEARALL 2695 +#define SCI_GETMULTIEDGECOLUMN 2749 #define SCI_SEARCHANCHOR 2366 #define SCI_SEARCHNEXT 2367 #define SCI_SEARCHPREV 2368 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index fb31e5b73..7d32ed46d 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1935,6 +1935,9 @@ fun void MultiEdgeAddLine=2694(position column, colour edgeColour) # Clear all vertical edges. fun void MultiEdgeClearAll=2695(,) +# Get multi edge positions. +get position GetMultiEdgeColumn=2749(int which,) + # Sets the current caret position to be the search anchor. fun void SearchAnchor=2366(,) |
