Page 5 of 7

Posted: Sun Apr 03, 2005 4:36 pm
by Polo
freak -> I'm using your IDE right now, i've just found out that if i write #pb_any, it's not automatically correcting it to #PB_Any like japbe does. Will you implement this feature ?
BTW, your ide is really really good ! now i've got an icon on my Linux desktop for Purebasic 8)

Posted: Sun Apr 03, 2005 4:41 pm
by Polo
Another stuff : I'm playing a little with the IDE, and when i start typing any commands like MessageRequester, let say i type Mess, then the autocomplete tool (that i had to active in the preference menu) show me MessageRequester. Good, then i just doubleclick on it or use tab, and it adds MessareRequester. It's good, but i would rather have it adding MessageRequester( ;)

Posted: Sun Apr 03, 2005 5:40 pm
by freak
About the case of the constants... didn't think of that. I will add an option for this.
About the "MessageRequester(" there is an option for that in the preferences.
just enable "Add opening Brackets to Functions/Arrays/Lists" and thats it ;)

Posted: Sun Apr 03, 2005 5:42 pm
by Bonne_den_kule
When do we get this IDE on Windows?

Posted: Sun Apr 03, 2005 5:48 pm
by Polo
New suggestions: Add case to variables too, and also autocompleting/case for user commands, i mean:

Code: Select all

Procedure MyCommand()
EndProcedure
When in type my I should see MyCommand in the autocomplete tool, and mycommand should be replaced by MyCommand.

I'm giving you work :wink:

Also, when a procedure is folded, we can still write in it, is it normal ? Japbe doesn't allow that (i don't really know why, but i'm used to this :))

Posted: Sun Apr 03, 2005 6:19 pm
by freak
Bonne_den_kule:
I am doing more improvements on PB/linux still. The windows version will
be a little delayed because of that. You have to be patient some more...

Polo: Have a close look at the preferences options. Much of it is there,
just not enabled by default.
For example the box at the bottom of the autocomplete preferences gives
you many choises on what to/and not to display in the autocomplete box.

About the variables cases. The current parsing routine sort of hit its limits there.
I have a new one in mind, but adding it now would delay things too much.

I have to keep some nice additions for future versions too ;)

Posted: Sun Apr 03, 2005 7:30 pm
by Polo
A bug (maybe) : autocompletion doesn't work when it's not the start of the line :

typing :

Code: Select all

Mess
will show MessageRequester

but typing

Code: Select all

       Mess
won't show anything.

Posted: Sun Apr 03, 2005 7:35 pm
by Polo
I've checked again, the autocomplete doesn't work when there's a real tab before the text, maybe that help :) with space it works.

Posted: Sat Apr 09, 2005 3:44 am
by GeoTrail
Just done a quick test using the IDE in Ubuntu 5.04 and it's working great.
I really love the user defined folding options ;)

Any chance for a Visual Designer too?

I can't get the variable viewer to work. When I start it it doesn't display any values.

Posted: Sat Apr 09, 2005 8:58 am
by olejr
GeoTrail wrote:Just done a quick test using the IDE in Ubuntu 5.04 and it's working great.
I really love the user defined folding options ;)

Any chance for a Visual Designer too?

I can't get the variable viewer to work. When I start it it doesn't display any values.
Visual Designer is on a todolist somewhere I think..

And variable viewer doesn't display any values?
Hmm. no i doesn't... Only structures & arrays..

@freak: Didn't you say something about the parsing of variables.. only globals, or something..?

Posted: Sat Apr 09, 2005 10:54 am
by freak
Yes, currently only explicitly declared variables (ie. DefType, Global, Static, Shared, Protected)
are detected.
I hope to improve that with a future version.

Posted: Sat Apr 09, 2005 3:41 pm
by GeoTrail
ok thanks for the info :)
can't wait to see a visual designer too.

Posted: Sun Apr 10, 2005 10:18 am
by Polo
freak: another stuff for the ide: it seems we cannot fold structure ? Maybe it's also in preference, i'll check ;)

Posted: Sun Apr 10, 2005 10:41 am
by Polo
I've also something: when i declare a procedure like this :

Code: Select all

Procedure MyProc()
[...]

EndProcedure
and then i just call it, when i doubleclick on the name of the procedure, the ide go to the line where there is "Procedure MyProc()"
That's really annoying, it should be done with an option on the right click, but, well, this should be an option ;)

Sorry to give you work ;)

Posted: Mon Apr 11, 2005 1:25 pm
by olejr
Polo wrote:freak: another stuff for the ide: it seems we cannot fold structure ? Maybe it's also in preference, i'll check ;)
Look into Prefs->Folding :wink: