Use tab as Eclipse in IntelliJ
Answered
I wonder how I can use 'tab' botton like Eclipse in IntelliJ
assume '!' is the cursor location.
for(int i=0; i<10; i++ !)
in Eclipse, if I press 'tab', it goes like this
for(int i=0; i<10; i++) !
but in IntelliJ, if do samething, it goes to
for(int i=0; i<10; i++ !)
How I can make IntelliJ's tab as Eclipse?
Please sign in to leave a comment.
In this case you can use "Complete statement" action (Ctrl+Shift+Enter).
Please also vote for https://youtrack.jetbrains.com/issue/IDEABKL-6984.
Thank you sooooooo much!!!!