Files
.emacs.d/modules/siren-helm-swoop.el

20 lines
416 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
:bind
("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