Smooth Cursor in VSCode

Something a little aesthetically pleasing today.

But did you know you can smooth the blink and cursor movement in VSCode.

It might not translate well to a gif, but as an example:

Showing the cursor in VSCode move around smoothly

To achieve a smooth cursor movement in Visual Studio Code, you can modify certain settings related to cursor behavior in your settings.json file.

This involves adjusting the cursor animation and blink rate to make the cursor movement appear smoother.

Here's how

  1. Open the Command Palette in VSCode by pressing Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS), then type Preferences: Open Settings (JSON) and press Enter. This opens your settings.json file.

  2. Modify Cursor Settings: Add or modify the following settings in your settings.json file:

    {
      "editor.cursorSmoothCaretAnimation": "on",
      "editor.cursorBlinking": "smooth"
    }
    

The "editor.cursorSmoothCaretAnimation": "on" enables the smooth animation of the cursor when you type or navigate through the text.

The "editor.cursorBlinking": "smooth" changes the cursor blinking to a smooth fade in and out effect, which can also contribute to the perception of smoother movement.

Vscode
Avatar for Niall Maher

Written by Niall Maher

Founder of Codú - The web developer community! I've worked in nearly every corner of technology businesses; Lead Developer, Software Architect, Product Manager, CTO and now happily a Founder.

Loading

Fetching comments

Hey! 👋

Got something to say?

or to leave a comment.