I miss very much Idea's ability to position cursor in position where I am going to write new code.
For example when i start new line but do not start writing, VS do not put anything i the line, so when i get back to this line I must manually indent it.
For example:
public void method() {
String s = "";<CURSOR_HERE>
}
Press enter.
public void method() {
String s = "";
<CURSOR_HERE>
}
Click somewhere else and then click on the added line:
public void method() {
String s = "";
<CURSOR_HERE>
}
Can R# position cursor in the correct position? Or if the END key could position the cursor in the indented position?
Description
I miss very much Idea's ability to position cursor in position where I am going to write new code.
For example when i start new line but do not start writing, VS do not put anything i the line, so when i get back to this line I must manually indent it.
For example:
public void method() {
String s = "";<CURSOR_HERE>
}
Press enter.
public void method() {
String s = "";
<CURSOR_HERE>
}
Click somewhere else and then click on the added line:
public void method() {
String s = "";
<CURSOR_HERE>
}
Can R# position cursor in the correct position? Or if the END key could position the cursor in the indented position?