Hi Neil,
I think the changes are enough too warrant a new file , its at http://trac.dsource.org/projects/poseidon/browser/trunk/current/poseidon/sci ntilla167/scintilla/src/LexD.cxx Here are the scilexer defines : #define SCLEX_D 76 #define SCLEX_DNOCASE 77 #define SCE_D_DEFAULT 0 #define SCE_D_COMMENT 1 #define SCE_D_COMMENTLINE 2 #define SCE_D_COMMENTDOC 3 #define SCE_D_NUMBER 4 #define SCE_D_WORD 5 #define SCE_D_STRING 6 #define SCE_D_CHARACTER 7 #define SCE_D_UUID 8 #define SCE_D_PREPROCESSOR 9 #define SCE_D_OPERATOR 10 #define SCE_D_IDENTIFIER 11 #define SCE_D_STRINGEOL 12 #define SCE_D_VERBATIM 13 #define SCE_D_REGEX 14 #define SCE_D_COMMENTLINEDOC 15 #define SCE_D_WORD2 16 #define SCE_D_VERBATIMTICK 17 #define SCE_D_COMMENTDOCKEYWORDERROR 18 #define SCE_D_GLOBALCLASS 19 #define SCE_D_WORD3 20 #define SCE_D_WORD4 21 #define SCE_D_WORD5 22 #define SCE_D_WORD6 23 #define SCE_D_WORD7 24 #define SCE_D_WORD8 25 #define SCE_D_WORD9 26 #define SCE_D_NESTCOMMENT 27 #define SCE_D_NESTCOMMENT1 (SCE_D_NESTCOMMENT + 1) #define SCE_D_NESTCOMMENT2 (SCE_D_NESTCOMMENT + 2) #define SCE_D_NESTCOMMENT3 (SCE_D_NESTCOMMENT + 3) #define SCE_D_NESTCOMMENT4 (SCE_D_NESTCOMMENT + 4) Thanks, happy new year all :). Charlie ----- Original Message ----- From: "Neil Hodgson" <[EMAIL PROTECTED]> To: "Discussion of the Scintilla editing component" <[email protected]> Sent: Wednesday, December 28, 2005 1:33 AM Subject: Re: [scintilla] A lexer for D ( www.digitalmars.com/d/ ) > Charles: > > > Ive been using this lexer for a while, and would like to submit it for > > inclusion in scintilla. > > > > It's just an altered version of the CPP lexer ( D supports nested comments > > so a couple changes ). > > If its a very a small alteration of the cpp lexer then it is > probably better merged into that lexer in a similar way to the case > insensitive version of cpp, cppnocase. > > > Where can I submit the file ? > > The SourceForge Request For Enhancement tracker > https://sourceforge.net/tracker/?group_id=2439&atid=352439 > > Or publish it on a web site and send the URL here. > > Neil > > _______________________________________________ > Scintilla-interest mailing list > [email protected] > http://mailman.lyra.org/mailman/listinfo/scintilla-interest > _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
