diff options
author | Neil <nyamatongwe@gmail.com> | 2014-09-03 10:16:38 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-09-03 10:16:38 +1000 |
commit | 25465a4676217e819294cbcbb3f6be1a56a801a7 (patch) | |
tree | 6cf9bd837c70ccc895cb6ec3ef91dafbb4471837 /include/SciLexer.h | |
parent | 51a8128524fd0eb7fd459616ca61f3187fa9a821 (diff) | |
download | scintilla-mirror-25465a4676217e819294cbcbb3f6be1a56a801a7.tar.gz |
Feature [feature-requests:#1071]. BibTeX lexer added.
From Sergiu Dotenco and danselmi.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 11eaf7b5e..acb9eacc3 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -128,6 +128,7 @@ #define SCLEX_AS 113 #define SCLEX_DMIS 114 #define SCLEX_REGISTRY 115 +#define SCLEX_BIBTEX 116 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1732,6 +1733,13 @@ #define SCE_REG_STRING_GUID 10 #define SCE_REG_PARAMETER 11 #define SCE_REG_OPERATOR 12 +#define SCE_BIBTEX_DEFAULT 0 +#define SCE_BIBTEX_ENTRY 1 +#define SCE_BIBTEX_UNKNOWN_ENTRY 2 +#define SCE_BIBTEX_KEY 3 +#define SCE_BIBTEX_PARAMETER 4 +#define SCE_BIBTEX_VALUE 5 +#define SCE_BIBTEX_COMMENT 6 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |