From e9c7aaaa3ccd83ee0bb6076f1f9fb2ac5653187f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 29 Dec 2012 18:25:03 +0000 Subject: patch [#33609] Syntax highlighting for OSL in Text Editor from Patrick Boelens (senshi). with modifications to split it into its own function. also added C style multi-line comment support /* ... */ I've left out the part of this patch that sets the language in the space, since I think this might be better stored in the text block. For now it simply uses OSL syntax highlighting when the extension is '.osl'. --- source/blender/makesdna/DNA_text_types.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/makesdna/DNA_text_types.h') diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h index 6ce883905d4..cd4e31c2521 100644 --- a/source/blender/makesdna/DNA_text_types.h +++ b/source/blender/makesdna/DNA_text_types.h @@ -82,5 +82,7 @@ typedef struct Text { #define TXT_TRISTR 0x04 /* triplets of quotes: """ or ''' */ #define TXT_SNGTRISTR 0x05 /*(TXT_TRISTR | TXT_SNGQUOTSTR)*/ #define TXT_DBLTRISTR 0x06 /*(TXT_TRISTR | TXT_DBLQUOTSTR)*/ +#define TXT_CONT_COMMENT_C 0x08 /* multi-line comments, OSL only (C style) */ +#define TXT_CONT_COMMENT_CXX 0x10 /* single-line comments, OSL only (C++ style) */ #endif -- cgit v1.2.3