Files
.emacs.d/modules/navigation/siren-helm-swoop.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

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