Hi there !
Could the AutoCompletation have the feature to show only the constants which belong to the current command? Maybe it means much work but
i think it would be worth doing it.
Greets
A.D.
AutoComplete with filter
AutoComplete with filter
Repeat
PureBasic
ForEver
PureBasic
ForEver
Re: AutoComplete with filter
+1 ...
viewtopic.php?f=3&t=42495
viewtopic.php?f=3&t=42495
The nice thing about standards is there are so many to choose from. ~ Andrew Tanenbaum
Re: AutoComplete with filter
This idea i posted two years ago
http://www.purebasic.fr/english/viewtop ... =3&t=42480
For my own procedures and interfaces i use the the following workaround:
Especially when i use pbi-files I often don't know which constants can be set. So I write a enum, where all constants start with specific characters. When i call the procedure, I see in the last line of the ide, which constants can be set.
http://www.purebasic.fr/english/viewtop ... =3&t=42480
For my own procedures and interfaces i use the the following workaround:
Code: Select all
Macro bEnum (Dummy) : b : EndMacro
Macro wEnum (Dummy) : w : EndMacro
Macro lEnum (Dummy) : l : EndMacro
Macro qEnum (Dummy) : q : EndMacro
Macro iEnum (Dummy) : i : EndMacro
Macro sEnum (Dummy) : s : EndMacro
Enumeration
#xyz_test1
#xyz_test2
#xyz_test3
EndEnumeration
Procedure ProcTest (Par1.iEnum(#xyz_))
;............
EndProcedure
ProcTest (...
sorry for my bad english
Re: AutoComplete with filter
Before adding a filter, I would like to resize the autocomplete popup window, as it's way too small in width.
Re: AutoComplete with filter
"Preferences" -> "Auto Complete" -> "Box width"Danilo wrote:I would like to resize the autocomplete popup window, as it's way too small in width.

If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Re: AutoComplete with filter
Thank you very much!c4s wrote:"Preferences" -> "Auto Complete" -> "Box width"Danilo wrote:I would like to resize the autocomplete popup window, as it's way too small in width.

I tried to resize the popup window with the mouse. Would be more comfortable IMO, but it's OK now.