Hi Doom Emacs!
I have multiple-cursors enabled in my init.el file. I am able to place arbitrarily many cursors with g z z. However, I was wondering if it was possible to somehow place arbitrarily many cursors using the arrows?
multiple-cursors
init.el
g z z
Loading data dump...
This worked for me (solution found on discord):
(map! "<M-left>" #'+multiple-cursors/evil-mc-toggle-cursor-here "<M-up>" (lambda () (interactive) (+multiple-cursors/evil-mc-toggle-cursor-here) (evil-previous-visual-line)) "<M-down>" (lambda () (interactive) (+multiple-cursors/evil-mc-toggle-cursor-here) (evil-next-visual-line)) "<M-right>" #'+multiple-cursors/evil-mc-toggle-cursor-here)
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.