diff options
author | nyamatongwe <unknown> | 2010-07-12 02:07:14 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-07-12 02:07:14 +0000 |
commit | 2196ed6fc9dce1ebc4d4e631a77859967b848f72 (patch) | |
tree | 2d25e7bde2d6fa93d7aa6b2ad659b61e8f7a5163 /include/Scintilla.h | |
parent | c3c5b7bdaefaa1b4406b2cd9c8b6b4a3379f5153 (diff) | |
download | scintilla-mirror-2196ed6fc9dce1ebc4d4e631a77859967b848f72.tar.gz |
Feature #3027559 Extend "sticky caret" feature from Jason Oster.
Additional mode SC_CARETSTICKY_WHITESPACE implemented.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index b91c78c2a..efb536742 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -669,6 +669,9 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_FINDCOLUMN 2456 #define SCI_GETCARETSTICKY 2457 #define SCI_SETCARETSTICKY 2458 +#define SC_CARETSTICKY_OFF 0 +#define SC_CARETSTICKY_ON 1 +#define SC_CARETSTICKY_WHITESPACE 2 #define SCI_TOGGLECARETSTICKY 2459 #define SCI_SETPASTECONVERTENDINGS 2467 #define SCI_GETPASTECONVERTENDINGS 2468 |