Re: [lazarus] Code Folding regions in Lazarus

2007-07-23 Thread Graeme Geldenhuys
On 24/07/07, Marc Weustink <[EMAIL PROTECTED]> wrote: For IDE related hits, I would prefer {%REGION 'Description about the fold'} Code .. .. {%ENDREGION} (since it is no compiler directive) :-) Well spotted Marc. After my post, I thought the exact same thing. Regards, - Graem

Re: [lazarus] Code Folding regions in Lazarus

2007-07-23 Thread Marc Weustink
Raistware wrote: Mattias Gärtner escribió: Zitat von Graeme Geldenhuys <[EMAIL PROTECTED]>: Hi, Does Lazarus support some sort of code folding 'region' keyword like the Visual Studio IDE does? I know Lazarus automatically handle begin..end etc. But can the user add there own code folding r

Re: [lazarus] Code Folding regions in Lazarus

2007-07-23 Thread Graeme Geldenhuys
On 23/07/07, Raistware <[EMAIL PROTECTED]> wrote: >> Here is an example of regions used in the Visual Studio IDE for C# code >> >> #Region " Windows Form Designer generated code " >> ... >> #End Region >> In CodeGear that is achieved with these tags: {$REGION 'Description about the fold'} Code

Re: [lazarus] Code Folding regions in Lazarus

2007-07-23 Thread Raistware
Mattias Gärtner escribió: Zitat von Graeme Geldenhuys <[EMAIL PROTECTED]>: Hi, Does Lazarus support some sort of code folding 'region' keyword like the Visual Studio IDE does? I know Lazarus automatically handle begin..end etc. But can the user add there own code folding regions around the

Re: [lazarus] Code Folding regions in Lazarus

2007-07-23 Thread Mattias Gärtner
Zitat von Graeme Geldenhuys <[EMAIL PROTECTED]>: > Hi, > > Does Lazarus support some sort of code folding 'region' keyword like > the Visual Studio IDE does? I know Lazarus automatically handle > begin..end etc. But can the user add there own code folding regions > around their code. > > Here is

[lazarus] Code Folding regions in Lazarus

2007-07-23 Thread Graeme Geldenhuys
Hi, Does Lazarus support some sort of code folding 'region' keyword like the Visual Studio IDE does? I know Lazarus automatically handle begin..end etc. But can the user add there own code folding regions around their code. Here is an example of regions used in the Visual Studio IDE for C# code