aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-06-22 10:51:29 +1000
committerNeil <nyamatongwe@gmail.com>2019-06-22 10:51:29 +1000
commit1573a0d60a3cf054979125c7986566d13a6686d3 (patch)
treed11ebaac9ad05da5826300ecb20d7f24a7e7453a /include/Scintilla.h
parent8aa1cae911d5323f2e435c37ef5132c90f16ed55 (diff)
downloadscintilla-mirror-1573a0d60a3cf054979125c7986566d13a6686d3.tar.gz
Bug [#1924]. Option to allow block carets to trail selection ranges.
Bit flag value is CARETSTYLE_BLOCK_AFTER=256.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 822105975..c7db899d7 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -835,8 +835,9 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define CARETSTYLE_LINE 1
#define CARETSTYLE_BLOCK 2
#define CARETSTYLE_OVERSTRIKE_BAR 0
-#define CARETSTYLE_OVERSTRIKE_BLOCK 16
+#define CARETSTYLE_OVERSTRIKE_BLOCK 0x10
#define CARETSTYLE_INS_MASK 0xF
+#define CARETSTYLE_BLOCK_AFTER 0x100
#define SCI_SETCARETSTYLE 2512
#define SCI_GETCARETSTYLE 2513
#define SCI_SETINDICATORCURRENT 2500