Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-29 Thread Benoît Minisini
> Hi! > Gambas IDE seems to automatically expand sentences like this "If a=b then" > to "If a = b then", even when you are in middle of writing this sentence. > This makes writing hard because expanding doesn't move cursor accordingly, > example if you try to write: > "If a=true then" you got: > "I

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-29 Thread Bruce Bruen
On Thursday, January 27, 2011 01:43:35 am Benoît Minisini wrote: > > Hi! > > Gambas IDE seems to automatically expand sentences like this "If a=b > > then" to "If a = b then", even when you are in middle of writing this > > sentence. This makes writing hard because expanding doesn't move cursor > >

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-27 Thread Jussi Lahtinen
OK, thanks to you both! For some reason I assumed that it uses LIKE command notation. Jussi On Thu, Jan 27, 2011 at 09:09, Demosthenes Koptsis wrote: > There is a help program which you can create RegExp or learn by doing. > It is named txt2regex > > the regexp you want probably is AnyFunctionN

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-26 Thread Benoît Minisini
> Search with regular expression doesn't seem to work... "AnyFunctionName(*" > doesn't find anything. > > Jussi > Search is done with "grep", so you must learn the grep regular expression syntax first! -- Benoît Minisini ---

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-26 Thread Jussi Lahtinen
Search with regular expression doesn't seem to work... "AnyFunctionName(*" doesn't find anything. Jussi 2011/1/26 Benoît Minisini > > Hi! > > Gambas IDE seems to automatically expand sentences like this "If a=b > then" > > to "If a = b then", even when you are in middle of writing this sentenc

Re: [Gambas-user] Problems with new feature of gambas IDE

2011-01-26 Thread Benoît Minisini
> Hi! > Gambas IDE seems to automatically expand sentences like this "If a=b then" > to "If a = b then", even when you are in middle of writing this sentence. > This makes writing hard because expanding doesn't move cursor accordingly, > example if you try to write: > "If a=true then" you got: > "I

[Gambas-user] Problems with new feature of gambas IDE

2011-01-26 Thread Jussi Lahtinen
Hi! Gambas IDE seems to automatically expand sentences like this "If a=b then" to "If a = b then", even when you are in middle of writing this sentence. This makes writing hard because expanding doesn't move cursor accordingly, example if you try to write: "If a=true then" you got: "If a True Then