aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-06-09 03:48:29 +0000
committernyamatongwe <devnull@localhost>2009-06-09 03:48:29 +0000
commite23bb2af49a72fdb3cc99883881f4fe1be1fdd4b (patch)
treeb7b2b6ebe1870c28d25b14028085da25319ec14e /src/Editor.h
parente2b55d44d4dfd76e2383f84ebb009e94ae8c773b (diff)
downloadscintilla-mirror-e23bb2af49a72fdb3cc99883881f4fe1be1fdd4b.tar.gz
Feature #2796119 Indent wrapped lines to first line. From maXmo.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index b74466416..e9372be00 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -235,7 +235,8 @@ protected: // ScintillaBase subclass needs access to much of Editor
int wrapVisualFlags;
int wrapVisualFlagsLocation;
int wrapVisualStartIndent;
- int actualWrapVisualStartIndent;
+ int wrapAddIndent; // This will be added to initial indent of line
+ int wrapIndentMode; // SC_WRAPINDENT_FIXED, _SAME, _INDENT
bool convertPastes;