mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
20 lines
416 B
EmacsLisp
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
|