Clicking anywhere in the IDE editor...
I've just downloaded PHPStorm and it's great, apart from one thing I've noticed. If I have a PHP file open, and say for example my code is...
class testClass {
}
If i click on the line where the closing bracket is insteading of placing the cursor next to where the bracket is it will place it where evere i clicked on that line, so for example
if i clicked half way up on that line it would place my cursor....
class testClass{
} HERE.
Instead of...
class testClass{
}HERE.
Hope this makes sense and somebody can help... Thanks
Please sign in to leave a comment.
Hello, try this...
Settings -> Editor:
remove check at 'Allow placement of caret after end of line'.
Thanks Leighton! It worked :)