[Implemented] Auto Edit OFF
Posted: Sat Aug 02, 2003 10:51 pm
Purebasic modifies a line instantly, this is a problem.
For example, anytime a quote is removed, the entire line any words or, and, not, to or anyother purebasic command instantly Uppercase the first letter. Then when you put the quote back, you must go and undo all these first letter caps that Purebasic did.
Now that Purebasic has over 600 commands, this is becoming more of a pain when modifying a line of code that has quotes.
Suggestions: do not let PureBasic modify a line until the down key, or enter key is pressed. This way, quotes can be removed or put back on without the entire line being modified with capital letters.
Another suggestions: give the user an Auto Edit OFF flag that can turn this feature of Purebasic off and perhaps be replaced by line modification after the enter of down arrow is pressed.
For example: I want to modify this line:
Now I want to replace the text in this line, and also, there is no second line so I want to take out the l$ as well. Because Purebasic is so aggressive in its formating, if I take off one of these quotes, the text on the rest of the line will INSTANTLY be modified which means some things are going to be capitalized that I don't want.
Better would be if I could turn Auto Edit OFF so that Purebasic does not modify this line until I hit ENTER or the down arrow. This way I can remove and replace quotes all I want and Purebasic will not make any automatic changes until I hit ENTER or move the cursor off the line.
For example, anytime a quote is removed, the entire line any words or, and, not, to or anyother purebasic command instantly Uppercase the first letter. Then when you put the quote back, you must go and undo all these first letter caps that Purebasic did.
Now that Purebasic has over 600 commands, this is becoming more of a pain when modifying a line of code that has quotes.
Suggestions: do not let PureBasic modify a line until the down key, or enter key is pressed. This way, quotes can be removed or put back on without the entire line being modified with capital letters.
Another suggestions: give the user an Auto Edit OFF flag that can turn this feature of Purebasic off and perhaps be replaced by line modification after the enter of down arrow is pressed.
For example: I want to modify this line:
Code: Select all
ToolTipHandle7 = AddButtonToolTip(lesson5,"Complex Numbers"+l$+l$+"The system C of complex numbers...")
Better would be if I could turn Auto Edit OFF so that Purebasic does not modify this line until I hit ENTER or the down arrow. This way I can remove and replace quotes all I want and Purebasic will not make any automatic changes until I hit ENTER or move the cursor off the line.