Files
.emacs.d/modules/navigation/siren-helm-swoop.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

21 lines
447 B
EmacsLisp

;;; siren-helm-swoop.el --- jimeh's Emacs Siren: helm-swoop configuration.
;;; Commentary:
;; Basic configuration for helm-swoop.
;;; Code:
(require 'siren-helm)
(use-package helm-swoop
:after (helm-global-bindings)
:general
("M-r" 'helm-swoop-without-pre-input)
("M-R" 'helm-swoop-back-to-last-point)
("C-c M-r" 'helm-multi-swoop)
("C-x M-r" 'helm-multi-swoop-all))
(provide 'siren-helm-swoop)
;;; siren-helm-swoop.el ends here