a better Editor
SamTheMan
Posts: 43
Who program and update·the SX editor?
I wish·he/she·to improve the editor so that the SUBs and FUNCs go to a different·pages(branches) and·do not stay·on the same program code page for easy access
right now every time I want to update a SUB, I have to look through the whole code line by line until I find the SUB. Unless there's·a feature·in the compuiler I don't know about it
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
I wish·he/she·to improve the editor so that the SUBs and FUNCs go to a different·pages(branches) and·do not stay·on the same program code page for easy access
right now every time I want to update a SUB, I have to look through the whole code line by line until I find the SUB. Unless there's·a feature·in the compuiler I don't know about it
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Comments
I'm afraid you'll just have to get used to the current editor. This style of program editor is extremely common. The vast majority of software is written in exactly the style you mention. The key is for you to organize your code better, to make it easier to find funcs and subs. For example, I have attached a section from one of the code examples in the help file. Note the use of long strings of "
" to isolate sections vertically. The use of these can be on a per function basis. There's no limit since they are just comments and don't add anything to the compiled code size. Also note the the useful and brief descriptions to make it easier to find what you're looking for.
Finally, as JonnyMac noted, the "find" function is your friend. Simply double click on any func or sub name and then hit CTRL-F. The name you double clicked will be in the find dialog, ready for you to search. Also, don't' forget F3 (search again), which will search for the last search term even with the dialog closed.
Thanks,
PeterM