java - How to prevent Android Studio autocomplete removing adjacent token -
If I'm editing an existing line code in android studio, and accepting an autocomplete, the following Cursor at the right side of the token:
Is there a way to disable this behavior, keeping both of the self and the balance of the plan?
If you press "Enter", it just pastes it into autocomplete, if you call it "tab" "Then it is replaced, I think that you are always pressing the" tab ", then try" enter "and see how it works.
Here is TLDR;
- Use Enter to insert the selected string at the entry point.
- Use Tab to change the string located next to the caret with the selected one.
- Use Ctrl + Shift + Enter to add an existing code to the syntax correctly (add balance brackets, missing braces and semicolons etc.)
- Use Tab to change the string located next to the caret with the selected one.
Comments
Post a Comment