IDE enhancements...

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User avatar
Michael Vogel
Addict
Addict
Posts: 2797
Joined: Thu Feb 09, 2006 11:27 pm
Contact:

IDE enhancements...

Post by Michael Vogel »

I'd like to see the following informations in the status line...

• Value of a constant when the cursor stays within such a text
• name of the procedure/macro of the actual cursor position

Attention - this matter is hard to understand (not only because of my bad english)...
One additional feature would be nice (but difficult to implement) :twisted:
When I enter some code using auto complete it may happen that some wrong text will be inserted (see example below). When trying to correct that, it can get even worse (if you make it may way :lol:):

Let's say I want to add #PB_Window_Borderless to the code, I enter #PB_Window <Return> but get #PB_Window3D_Borderless on the screen, my mistake.
So I remove the 3D_ and add _ again (not the best example, I know) to see the auto complete box.
When I press <Return> now, I will have #PB_Window_BorderLessBorderless on the screen. A clever (or genius) function could check if the characters to be inserted are itendically to the chars in the source - then just the cursor would move :roll:

Michael