Home > OS >  Change cursor type in VS Code
Change cursor type in VS Code

Time:05-14

When I open VS Code, the cursor is shown as a block as shown below, but I want the cursor to be a single vertical line. Is it possible to change this in VS Code so that when I use R, Python, or cmd terminals in R, the cursor is constently a single vertical line, not like the current block type cursor? enter image description here

CodePudding user response:

  1. Open Settings via Ctrl ,
  2. Search for "Terminal > Integrated: Cursor Style"
  3. Choose "line" from the drop down menu

Terminal Integrated Cursor Style

Results:

Results

  • Related