all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Search for selected tex
@ 2008-06-14 16:30 Lorenzo Isella
  2008-06-14 16:45 ` Lennart Borgman (gmail)
  0 siblings, 1 reply; 5+ messages in thread
From: Lorenzo Isella @ 2008-06-14 16:30 UTC (permalink / raw)
  To: help-gnu-emacs

Dear All,
I would like to be able to select some text with C-space and then look 
for it inside the buffer.
I found some functions online which I modified to get:

;; a function to search the selected text

(defun my-search-forward (begin end)
  (interactive (list (point) (mark)))
  (let ((text (filter-buffer-substring begin end nil t)))
    (goto-char (max begin end))
    (let ((found-pos (search-forward text nil t)))
      (if (not found-pos)
          (progn
            (goto-char begin)
            (error "not found"))
          (progn
            (goto-char found-pos)
            (set-mark (- found-pos (length text))))))))


(define-key global-map [(control q )] 'my-search-forward)


It is almost there but not yet...
If I highlight some text, I can look for it with C-q, but once at the 
end of the buffer, it stops searching (whereas I would like it to search 
from the beginning of the buffer).
If then I move to the beginning of the buffer, not everything above my 
last position is selected, but also the function loses memory of what I 
was looking for...
Anybody can give me some help? Apologies if there is already and emacs 
command for that, but my online search was not fruitful.
Cheers

Lorenzo




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-06-15  0:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-14 16:30 Search for selected tex Lorenzo Isella
2008-06-14 16:45 ` Lennart Borgman (gmail)
2008-06-14 17:00   ` Thierry Volpiatto
2008-06-15  0:15     ` Juanma
2008-06-14 17:03   ` Lorenzo Isella

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.