References

Adomnicai, Gabriel. (2015) 2025. “Gabesoft/Evil-Mc.” https://github.com/gabesoft/evil-mc.

Greg Yut, ed. 2022. Emacs Multiple Cursors. Directed by Greg Yut. https://www.youtube.com/watch?v=mDDeSKRc3Zo.

“Hlissner/Evil-Multiedit: Multiple Cursors for Evil-Mode, Based on Iedit.” 2025. https://github.com/hlissner/evil-multiedit.

Sveen, Magnar. (2012) 2025. “Magnars/Multiple-Cursors.El.” https://github.com/magnars/multiple-cursors.el.

관련노트

magnars/multiple-cursors.el

(Sveen [2012] 2025)

  • Sveen, Magnar
  • Multiple cursors for emacs.
  • 2025

Emacs Multiple Cursors = How-to

[2023-06-25 Sun 12:41] (Greg Yut 2022) 영상을 보니까 쉽다. 바인딩도 무난하다.

https://youtube.com/watch?v=mDDeSKRc3Zo&feature=share

#둠이맥스 관련 evil-mc evil-multiedit

[2025-03-05 Wed 15:43]

아래에 있으나 안쓰고 어떻게 버티는가? evil은 아래과 같이 쓴다.

gabesoft/evil-mc

(Adomnicai [2015] 2025)

  • Adomnicai, Gabriel

  • Multiple cursors implementation for evil-mode

  • 2025

  • The evil-mc keys are under the gz prefix, e.g.

    • gzz to toggle new (frozen) cursors at point.
    • gzt to toggle mirroring on and off (or switch to insert mode to activate them).
    • gzA to place cursors at the end of each selected line.
    • gzI will place them at the beginning.
  • There’s also the ex command :mc/REGEXP/FLAGS, for laying down cursors by regex.

hlissner/evil-multiedit: Multiple cursors for evil-mode, based on iedit

(“Hlissner/Evil-Multiedit: Multiple Cursors for Evil-Mode, Based on Iedit” 2025) Designates “interactive edit” regions. Only the textual changes to them are mirrored.

  • M-d to iedit the symbol at point. Again to iedit its next match.
  • M-S-d to do it backwards.
  • R (in visual mode) to iedit all matches of the selection at point in the buffer.
  • Or :iedit/REGEX to iedit all matches of REGEX.