[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: syntax highlighting Lua
- From: "Carlos Augusto Teixeira Mendes" <cmendes@...>
- Date: Mon, 21 Jan 2002 09:40:36 -0200
I know it is possible to do so becouse in the following C code,
when you change the first "#if 1" to "#if 0", the text is highlighted
correctly.
The C syntax highlighting code is quite complicated and, unfortunately, I am
not
with much time at the moment to look further into this.
#if 1
a= 2;
#if 0
b = 3
#endif
#endif
As soon as I have some spare time I will try to fix Luas syntax highlighting
macros.
Carlos Augusto.
> -----Original Message-----
> From: owner-lua-l@tecgraf.puc-rio.br
> [mailto:owner-lua-l@tecgraf.puc-rio.br]On Behalf Of Luiz Henrique de
> Figueiredo
> Sent: Saturday, January 19, 2002 8:55 AM
> To: Multiple recipients of list
> Subject: Re: syntax highlighting Lua
>
>
> >>Also, we're considering adding block comments to Lua in the
> form --[[...]]
> >
> >Will they be recursive?
>
> Yes, just like [[..]] strings: they end at the matching ]].
> --lhf