diff options
| author | John Ehresman <unknown> | 2017-02-12 09:15:08 +1100 |
|---|---|---|
| committer | John Ehresman <unknown> | 2017-02-12 09:15:08 +1100 |
| commit | c0df83f637c42982662aaa802f691abb3d529a2e (patch) | |
| tree | 73c32bc0eaf0c8ad54cc4d19cddb160fd34d2ea0 /include | |
| parent | 5bd32babfe8721de32026d78378848f90fe6d68c (diff) | |
| download | scintilla-mirror-c0df83f637c42982662aaa802f691abb3d529a2e.tar.gz | |
Bug [#1848]. Support Python f-strings with new styles.
Diffstat (limited to 'include')
| -rw-r--r-- | include/SciLexer.h | 4 | ||||
| -rw-r--r-- | include/Scintilla.iface | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 44c02a84a..4eb6209d8 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -151,6 +151,10 @@ #define SCE_P_STRINGEOL 13 #define SCE_P_WORD2 14 #define SCE_P_DECORATOR 15 +#define SCE_P_FSTRING 16 +#define SCE_P_FCHARACTER 17 +#define SCE_P_FTRIPLE 18 +#define SCE_P_FTRIPLEDOUBLE 19 #define SCE_C_DEFAULT 0 #define SCE_C_COMMENT 1 #define SCE_C_COMMENTLINE 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 34a61321b..e397f7e50 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2914,6 +2914,10 @@ val SCE_P_COMMENTBLOCK=12 val SCE_P_STRINGEOL=13 val SCE_P_WORD2=14 val SCE_P_DECORATOR=15 +val SCE_P_FSTRING=16 +val SCE_P_FCHARACTER=17 +val SCE_P_FTRIPLE=18 +val SCE_P_FTRIPLEDOUBLE=19 # Lexical states for SCLEX_CPP, SCLEX_BULLANT, SCLEX_COBOL, SCLEX_TACL, SCLEX_TAL lex Cpp=SCLEX_CPP SCE_C_ lex BullAnt=SCLEX_BULLANT SCE_C_ |
