Prefill Emacs swiper with current region

from blog lmno.lol @alvaro, | ↗ original
The new swiper Emacs package is proving to be a great alternative to helm-swoop. Here's how to prefill with current region: (defun ar/prefilled-swiper () "Pre-fill swiper input with region." (interactive) (if (region-active-p) (let ((region-text (buffer-substring (region-beginning) ...