I am new to emacs and trying to gradually learn it by starting from the existing browser/vscode-like text manipulation workflow.
Text selection with a mouse seemed frustrating for me at first. To fix it, I switched to the classical browser "bar" cursor style by placing (setq-default cursor-type 'bar) in the ~/.emacs.
However, it didn't solve the issue with selection, it only changed the cursor visually. In the browser, if I click on a character in the editable text area, my cursor is placed
- before that character, if I click on the left half of the character
- after the character, if I click on the right half of the character
In emacs, if I click on a character the cursor is always placed before the character. How I can fix that?
