Reputation: 1482
In Eclipse and many other editors we've same behavior for these Cursor styles:
Insert mode: The cursor inserts a character at its current position, forcing all characters past it one position further.
Overtype mode : The cursor, when typing, overwrites any text that is present in the current location.
But In Android Studio, this cursor is behaving opposite
This is very annoying for me, Can anyone tell me how to fix this behavior ?
(As we know in windows, We can toggle cursor behavior & style by pressing Insert key )
Upvotes: 26
Views: 29402
Reputation: 153
Restart Android studio it should work
1 >> File
2 >> Exit
3 >> Launch Android studio
It should work
Upvotes: 0
Reputation: 11
If nothing helped, then you can try this scheme: Tools -> Vim Emulator (disable the check mark)
Upvotes: 1
Reputation: 151
Other than the answers there is another case which could lead to this situation. I accidently installed IdeaVIM plugin to my IDE, and that caused it to have cursor in overtype mode. Disabling that plugin solved my problem.
To disable a plugin go to File -> Settings -> Plugins -> Installed
and then uncheck the plugin you want to disable.
Upvotes: 1
Reputation: 157
press the insert button once. It will be fine for every type of programming editors like Android Studio, Dev C++ etc.
Upvotes: 12
Reputation: 181
There are two ways to do this 1. The first is to go through the settings to change it That is, File >> Settings >> Editor >> Appearance >> Use block caret ( should be unchecked )
Upvotes: 8
Reputation: 1482
At last I found solution of my problem :)
So, following is the fix for it:
File - > Settings -> Editor (IDE Settings) -> Appearance->
Then uncheck Use Block caret
Upvotes: 24