rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

module-multiple-cursors.el (419B)


      1 (use-package multiple-cursors
      2   :bind (("C-S-c C-S-c" . mc/edit-lines)
      3          ("C->"         . mc/mark-next-like-this)
      4          ("C-<"         . mc/mark-previous-like-this)
      5          ("C-c C-<"     . mc/mark-all-like-this)
      6          ("C-S-SPC"     . set-rectangular-region-anchor)
      7          ("C-S-c C->"   . mc/mark-sgml-tag-pair))
      8   :init (setq mc/list-file "~/.cache/mc-lists.el"))
      9 
     10 (provide 'module-multiple-cursors)