Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cursor sometimes changes from a vertical line to an underscore in Rstudio

Tags:

I am using R-studio 3.3.3 on a 64 bit windows 10 Acer laptop. I am new to programming in R and I just discovered that my cursor sometimes changes from a vertical line to an underscore in R-studio. Could someone help tell me why?

like image 585
Samuel Nde Avatar asked Nov 08 '17 04:11

Samuel Nde


People also ask

Why does my cursor change to a line?

A corrupted cursor turns into a line or bar and doesn't really look much like a cursor at all (a little like the one shown in the snapshot directly below). Mouse cursors tend to get corrupted for users utilizing dual monitors with AMD graphics card laptops or desktops.

How do I get my cursor back from underscore?

A way to recover is put the mouse pointer within the window and click somewhere (so that tit gets the keyboard focus), then press one at time all the Shift, Ctrl, and Alt keys twice.

How do I get my cursor back to normal?

Press Windows Key +I and go to Ease of access and select Mouse option from the left Pane and try to set default settings for mouse and see if it helps. Hope this information was helpful.

How do I get rid of the flashing cursor in R?

Control Panel / Keyboard / Keyboard Properties, and set the Cursor blink rate to None. Right click the RStudio app, and Run as administrator. Uncheck Blinking cursor per usual, and the blinking should stop.


2 Answers

Press the Insert button on your keyboard.

like image 152
Jay Zamsol Avatar answered Sep 21 '22 11:09

Jay Zamsol


This is a very common operation in different software and platforms. The underscore means that you are in Overwrite mode, meaning that anything you type will overwrite the text at the cursor position.

The "normal" cursor indicates that you are in insert mode and all text you type will force the rest of the line to move further.

Switching between these modes happens by pressing the Insert key on your keyboard (usually there are two of them, one somewhere above of the arrow keys and another on the Num Pad).

like image 22
Captain Stone Avatar answered Sep 17 '22 11:09

Captain Stone