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 /src/Editor.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 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 54411fad5..e7aa2e6ce 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -159,7 +159,7 @@ protected: // ScintillaBase subclass needs access to much of Editor int lineWidthMaxSeen; bool verticalScrollBarVisible; bool endAtLastLine; - bool caretSticky; + int caretSticky; bool multipleSelection; bool additionalSelectionTyping; int multiPasteMode; |