Helm buffer URLs

from blog lmno.lol @alvaro, | ↗ original
Venturing into Emacs lisp and Helm. Here's a go at listing all URLs in current buffer. (require 'goto-addr) (defun ar/helm-buffer-url-candidates () "Generate helm candidates for all URLs in buffer." (save-excursion (goto-char (point-min)) (let ((helm-candidates '()) (url)) (while (re-search-forward...