You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following sequence of actions will add " hello" to every line.
0 (go to the beginning of the line)
C-v (start visual block mode)
$ (go to the end of the line)
2j (select 3 lines in visual block mode)
A
" hello"
ESC
However, in org mode with evil-org-mode activated this is broken because $ is bound to evil-org-end-of-line.
Binding it to evil-end-of-line restores correct behavior.
The text was updated successfully, but these errors were encountered:
When soft-wrapping lines (in my case with olivetti-mode), evil-org-end-of-line will go to the end of the visual line, not the actual one. evil-end-of-line behaves as expected.
@betaprior This is kind of intended, because $ goes to the end of visual line. Maybe pressing $ twice should go to the real end, but $ is already kind of overloaded for headings. I don't think I see a another way to fix this, other then unmapping $ and losing some other functionality.
Default vim/EVIL behavior: given the text
The following sequence of actions will add " hello" to every line.
However, in org mode with evil-org-mode activated this is broken because $ is bound to evil-org-end-of-line.
Binding it to evil-end-of-line restores correct behavior.
The text was updated successfully, but these errors were encountered: