aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-02-13 10:55:42 +1100
committernyamatongwe <devnull@localhost>2011-02-13 10:55:42 +1100
commit40d6d4f69c35c84a0bf4c6a3316754dba4484e4e (patch)
treebab05faa30a062e1d3f4f547ff301c9d6363b362 /include
parent9bf6e65bbe0af1e39c2986ed0e522cba753662b5 (diff)
downloadscintilla-mirror-40d6d4f69c35c84a0bf4c6a3316754dba4484e4e.tar.gz
Folding features added by Udo Lechner.
Explicit fold points which can be set to arbitrary strings and occur anywhere. Can choose whether to have syntax based folding and multiline comment folding.
Diffstat (limited to 'include')
-rw-r--r--include/SciLexer.h1
-rw-r--r--include/Scintilla.iface1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h
index 118e3927e..627e6014e 100644
--- a/include/SciLexer.h
+++ b/include/SciLexer.h
@@ -604,6 +604,7 @@
#define SCE_ASM_CHARACTER 12
#define SCE_ASM_STRINGEOL 13
#define SCE_ASM_EXTINSTRUCTION 14
+#define SCE_ASM_COMMENTDIRECTIVE 15
#define SCE_F_DEFAULT 0
#define SCE_F_COMMENT 1
#define SCE_F_NUMBER 2
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index c78a0e6e5..d4cf22770 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -2917,6 +2917,7 @@ val SCE_ASM_COMMENTBLOCK=11
val SCE_ASM_CHARACTER=12
val SCE_ASM_STRINGEOL=13
val SCE_ASM_EXTINSTRUCTION=14
+val SCE_ASM_COMMENTDIRECTIVE=15
# Lexical states for SCLEX_FORTRAN
lex Fortran=SCLEX_FORTRAN SCE_F_
lex F77=SCLEX_F77 SCE_F_