emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Piotr Zielinski" <piotr.zielinski@gmail.com>
To: emacs-orgmode@gnu.org
Subject: automatic isearch-mode in org-goto and org-remember
Date: Fri, 23 Jun 2006 15:40:59 +0100	[thread overview]
Message-ID: <3c12eb8d0606230740m21779d82ra064e71977124304@mail.gmail.com> (raw)

Hi,

The following lisp code turns automatic isearch mode on (as in
Firefox) whenever you navigate an org-file using org-goto or
org-remember.  It is useful especially for finding headlines when the
org-file is long and has a deeply nested structure. The isearch-mode
is modified so that it searches only headlines (even invisible ones)
but ignores normal text.

The function local-move-tree uses (the enhanced) org-goto to move the
current tree to the selected location.  It is useful for organizing
your org-file; when many items accumulated on your general todo list
(eg. after using org-remember a lot) and you want to dispatch them to
the projects they belong to.

Finally, the newest version of  org-mouse (0.17) allows you to toggle
checkboxes [X] with a single mouse click.

http://www.cl.cam.ac.uk/~pz215/files/org-mouse.el

Piotr


(defvar local-auto-isearch-map (make-sparse-keymap))
(set-keymap-parent local-auto-isearch-map isearch-mode-map)
(define-key local-auto-isearch-map "\C-i" 'isearch-other-control-char)

(defun local-search-forward-headings (string bound noerror)
  (catch 'return
    (while (search-forward string bound noerror)
      (when (save-match-data (outline-on-heading-p t))
	(throw 'return t)))))

(defun local-auto-isearch ()
  (interactive)
  (let ((keys (this-command-keys)))
    (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
      (isearch-mode t)
      (isearch-process-search-char (string-to-char keys)))))

(defun local-move-tree (&optional tobuffer)
  (interactive)
  (setq tobuffer (or tobuffer (current-buffer)))
  (let ((toplace (save-excursion
		    (set-buffer tobuffer)
		    (beginning-of-buffer)
		    (org-goto)
		    (copy-marker (point)))))
    (org-cut-subtree)
      (save-excursion
	(set-buffer tobuffer)
	(goto-char toplace)
	(org-back-to-heading t)
	(org-paste-subtree (outline-level)))))


(add-hook 'org-mode-hook
	  '(lambda ()
	     (defadvice org-get-location (around auto-isearch-advice activate)
	       (let ((isearch-mode-map local-auto-isearch-map)
		     (isearch-hide-immediately nil)
		     (isearch-search-fun-function
		      (lambda () 'local-search-forward-headings)))
		 ad-do-it))
  	     (define-key org-goto-map [(return)] 'org-goto-ret)
	     (define-key-after org-goto-map [t] 'local-auto-isearch)
	     (require 'cl)
	     (dolist (key '(?n ?p ?f ?b ?u ?q))
	       (setq org-goto-map (assq-delete-all key org-goto-map)))))

             reply	other threads:[~2006-06-23 14:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-23 14:40 Piotr Zielinski [this message]
2006-06-23 19:10 ` automatic isearch-mode in org-goto and org-remember Carsten Dominik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3c12eb8d0606230740m21779d82ra064e71977124304@mail.gmail.com \
    --to=piotr.zielinski@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).