Function: cape--line-list
cape--line-list is a byte-compiled function defined in cape.el.
Signature
(cape--line-list)
Documentation
Return all lines from buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cape-20260804.2303/cape.el
(defun cape--line-list ()
"Return all lines from buffer."
(let ((ht (make-hash-table :test #'equal))
(curr-buf (current-buffer))
(buffers (funcall cape-line-buffer-function))
lines)
(dolist (buf (ensure-list buffers))
(with-current-buffer buf
(let ((beg (point-min))
(max (point-max))
(pt (if (eq curr-buf buf) (point) -1))
end)
(save-excursion
(while (< beg max)
(goto-char beg)
(setq end (pos-eol))
(unless (<= beg pt end)
(let ((line (buffer-substring-no-properties beg end)))
(unless (or (string-blank-p line) (gethash line ht))
(puthash line t ht)
(push line lines))))
(setq beg (1+ end)))))))
(nreverse lines)))