There might be some configurations for those, if there are, please let me know, if not, can they be implemented ?
1. When using the auto complete, it removes the next piece of code if there is no space.
Example:
If I already have:
$arr['items'];
And now I type before it :
$myobj->
So it looks like so (where the cursor where the X is):
$myobj->X$arr['items'];
And I use the autocomplete to get the function name, the $arr is removed. I have to put a space for it not to remove it. This behavior does not make sense, Other IDE's will push everything forward when choosing the function name. This broke my code a few times, since I am not used to it.
Is there a setting for it ? if not, can it be added ?
2. I have seen this one on other posts ...
When using undo / redo, it remembers cursor movements, so if I undo , and move the cursor anywhere, I loose the redo history. This sometimes result in loosing code that is not saved, and I find it a bit confusing. Again, different than other IDE's I've been using.
Can this be a setting ?
A different IDE that I've been using - not to mention names
uses two different set of keys for undo/redo of code, and undo/redo of cursor movements, I found it extremely helpful, and I miss it in PHPed.
Please let me know.