Hello
I'm using Open Edge wordfile.
/L1"OpenEdge 10.1B" NestBlockComments Nocase Escape Char = ~ Block Comment On = /* Block Comment Off = */ EnableMLS File Extensions = p i w cls $1$ h v f t
I have faced a problem with the code folding inside nested block comments. I' ll try to explain, sorry for my English.
this code below has 2 foldings starting in the 'do:' and ends in the 'end.'
The following code works well and the folding begins in the first block comment '/*' and end in the last one '*/'. Only one folding is displayed
If I insert a block comment in the middle of this from the block comment off forwards the normal code folding appears. In this example below the code folding start in the first '/*' ends in the first '*/' and then the folding appears again in the 'do:' and ends in the '*/'. But all this code is commented so it shouldn't.
I don't know if I have something wrong in the wordfile so any help would be appreciated.
Thanks
I'm using Open Edge wordfile.
/L1"OpenEdge 10.1B" NestBlockComments Nocase Escape Char = ~ Block Comment On = /* Block Comment Off = */ EnableMLS File Extensions = p i w cls $1$ h v f t
I have faced a problem with the code folding inside nested block comments. I' ll try to explain, sorry for my English.
this code below has 2 foldings starting in the 'do:' and ends in the 'end.'
Code: Select all
if ... then do:
do:
end.
end.
Code: Select all
/*
if ... then do:
do:
end.
end.
*/
Code: Select all
/*
if ... then do:
/*
*/
do:
end.
end.
*/
Thanks