Reputation:
Is there a way to adjust the cursor blink rate in Visual Studio 2015? For example, in Notepad++ there is this window where I can adjust the blink rate:
Thank you
Upvotes: 13
Views: 10469
Reputation: 592
Its pretty simple and easy
Go to file--->preferences---->settings
Select search item as "cursor"
In the results section. Choose cursor blinking to "solid"
Here you go problem solved.
Upvotes: 13
Reputation:
Visual Studio gets the cursor settings from your OS settings. You can stop the cursor from blinking by changing the cursor blink rate to "none".
Due to the discontinuation of the Control Panel in Windows 10, and the absence of corresponding option in the new Settings app, the easiest way to bring up the Keyboard Properties window is to run the following command from the Run prompt.
control keyboard
The same command can be used in previous Windows versions if you find this method easier.
Visual Studio Code: Note that this does not work with Visual Studio Code per version 1.22.2, because unlike Visual Studio, Visual Studio Code has its own controls for displaying and animating the cursor.
Upvotes: 10