Reputation: 299
As you see the screen below, I don't know how to disable it.
Basically, when I highlights any code the cursor become "fat" and I cannot write inside it anymore until I click outside the highlighted code and type the "a" key on my keyboard.
Cursor "fat":
Version:
WebStorm 2019.2 Build #WS-192.5728.87, built on July 22, 2019
Upvotes: 1
Views: 111
Reputation: 93898
You must be using IdeaVim plugin... "Fat" cursor likely indicates that the editor is in command mode that doesn't allow entering text.
If you are not experienced with VIM, I'd suggest disabling/uninstalling the plugin in Settings | Plugins
Upvotes: 4
Reputation: 2922
This is normally the way that WebStorm works, if you highlight something it means that you want to edit the whole block of code (copy, cut or paste) and also WebStorm tries to suggest some improvements for the code (The lightbulb). As far as I know, there's no option to change the default behavior when selecting a block of code, but you can check here.
Upvotes: 0