Search found 3 matches

by François TREMEL
01 Feb 2010 10:15
Forum: Syntax files
Topic: Help needed for syntax file
Replies: 2
Views: 12189

OK, Thanks
I have tested, that works. :D

So the Method are listed in class and not in Module. The class should be selected to display the Methods.
I don't take care of this at the first moment.
But this solve my problem.
by François TREMEL
31 Jan 2010 09:17
Forum: Syntax files
Topic: Strange behaviors in Code explorer
Replies: 0
Views: 9167

Strange behaviors in Code explorer

For some files, I have detected that if I have such code
My_fonction xxx arg {
. . .
}
(notes the { in the same line)

then only arg is displayed in the code explorer

but if I put the { in the next line, My_fonction xxx arg is displayed as method in the code explorer.

If I remove the line List ...
by François TREMEL
31 Jan 2010 09:14
Forum: Syntax files
Topic: Help needed for syntax file
Replies: 2
Views: 12189

Help needed for syntax file

Hello,

I would like to use RJ TextEd to edit a type of file used in my company.

The structure of this file is:

CPU DEF
{

OPTION {
. . .
};

OBJ xxx
{
MEMBER {. . .}
MEMBER {. . .}
};

FONCT yyy
{
MEMBER {. . .}
MEMBER {. . .}
};

OBJ zzz
{
MEMBER {. . .}
MEMBER {. . .}
};

};


I have ...