Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable "cursor beyond end of line"?

How do I deactivate Delphi's "Cursor beyond end of line" feature? When I click in the empty space to the right of a line, or when I navigate to a line with the arrow keys, I want the cursor to be at the line's real end, not in the "virtual space".

like image 641
LppEdd Avatar asked Jul 31 '13 17:07

LppEdd


Video Answer


2 Answers

AFAIK, you cannot. The code editor has always had that behavior built-in. You can tell it to not go past End-Of-File, but not End-Of-Line.

like image 51
Remy Lebeau Avatar answered Sep 30 '22 15:09

Remy Lebeau


When possible you can set a macro on one of the mouse buttons to hit the combo "left-click" and "End" when clicked. Not the ideal situation but it does the trick.

like image 35
Oxipe Avatar answered Sep 30 '22 14:09

Oxipe