Skip to content

Commit

Permalink
multiple-cursors default to run-for-all
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhu committed Aug 23, 2023
1 parent 46e9fec commit d1197ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/005-editing-config.el
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
:bind (("C-." . avy-goto-word-or-subword-1)
("C-o" . avy-goto-word-or-subword-1)))

(use-package multiple-cursors :ensure t :pin melpa-stable
:init (setq mc/always-run-for-all t)
(use-package multiple-cursors :ensure t
:init (custom-set-variables '(mc/always-run-for-all t))
:config (define-key mc/keymap (kbd "<return>") nil)
:bind (("C->" . mc/mark-next-like-this)
("C-<" . mc/mark-previous-like-this)
Expand Down
1 change: 0 additions & 1 deletion init.el
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
(setq ns-use-srgb-colorspace nil)
(setq debug-on-error t)

;; Remove the UI
(dolist (mode '(menu-bar-mode tool-bar-mode scroll-bar-mode))
Expand Down

0 comments on commit d1197ff

Please sign in to comment.