123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- (require 'org)
- (require 'button)
- (eval-when-compile (require 'cl))
- (defgroup org-velocity nil
- "Notational Velocity-style interface for Org."
- :tag "Org-Velocity"
- :group 'outlines
- :group 'hypermedia)
- (defcustom org-velocity-bucket ""
- "Where is the bucket file?"
- :group 'org-velocity
- :type 'file)
- (defcustom org-velocity-always-use-bucket nil
- "Use bucket file even when called from an Org buffer?"
- :group 'org-velocity
- :type 'boolean)
- (defcustom org-velocity-use-completion nil
- "Complete on heading names?"
- :group 'org-velocity
- :type 'boolean)
- (defcustom org-velocity-use-remember (featurep 'org-remember)
- "Use Org-remember or just visit the file?"
- :group 'org-velocity
- :type 'boolean)
- (defcustom org-velocity-remember-method 'bottom
- "Where in files should `org-remember' record new entries?"
- :group 'org-velocity
- :type '(choice (const :tag "Add at bottom" bottom)
- (const :tag "Add at top" top)
- (const :tag "Use date tree" date-tree)))
- (defcustom org-velocity-edit-indirectly t
- "Edit entries in an indirect buffer or just visit the file?"
- :group 'org-velocity
- :type 'boolean)
- (defcustom org-velocity-search-method 'phrase
- "Match on whole phrase, any word, or all words?"
- :group 'org-velocity
- :type '(choice
- (const :tag "Match whole phrase" phrase)
- (const :tag "Match any word" any)
- (const :tag "Match all words" all)))
- (defcustom org-velocity-allow-regexps nil
- "Allow searches to use regular expressions?"
- :group 'org-velocity
- :type 'boolean)
- (defvar org-velocity-index
- (nconc (number-sequence 49 57)
- (number-sequence 97 122)
- (number-sequence 65 90))
- "List of chars for indexing results.")
- (defstruct (org-velocity-heading
- (:constructor org-velocity-make-heading)
- (:type list))
- (marker (point-marker))
- (name (substring-no-properties
- (org-get-heading))))
- (defun org-velocity-use-file ()
- "Return the proper file for Org-Velocity to search.
- If `org-velocity-always-use-bucket' is t, use bucket file; complain
- if missing. Otherwise if this is an Org file, use it."
- (let ((org-velocity-bucket
- (and org-velocity-bucket (expand-file-name org-velocity-bucket))))
- (if org-velocity-always-use-bucket
- (or org-velocity-bucket (error "Bucket required but not defined"))
- (if (and (eq major-mode 'org-mode)
- (buffer-file-name))
- (buffer-file-name)
- (or org-velocity-bucket
- (error "No bucket and not an Org file"))))))
- (defsubst org-velocity-display-buffer ()
- "Return the proper buffer for Org-Velocity to display in."
- (get-buffer-create "*Velocity headings*"))
- (defsubst org-velocity-bucket-buffer ()
- "Return proper buffer for bucket operations."
- (find-file-noselect (org-velocity-use-file)))
- (defun org-velocity-quote (search)
- "Quote SEARCH as a regexp if `org-velocity-allow-regexps' is non-nil.
- Acts like `regexp-quote' on a string, `regexp-opt' on a list."
- (if org-velocity-allow-regexps
- search
- (if (listp search)
- (regexp-opt search)
- (regexp-quote search))))
- (defun org-velocity-nearest-heading (position)
- "Return last heading at POSITION.
- If there is no last heading, return nil."
- (save-excursion
- (goto-char position)
- (unless (org-before-first-heading-p)
- (org-back-to-heading)
- (org-velocity-make-heading))))
- (defun org-velocity-make-button-action (heading)
- "Return a form to visit HEADING."
- `(lambda (button)
- (run-hooks 'mouse-leave-buffer-hook)
- (if org-velocity-edit-indirectly
- (org-velocity-edit-entry ',heading)
- (progn
- (message "%s" ,(org-velocity-heading-name heading))
- (switch-to-buffer (marker-buffer
- ,(org-velocity-heading-marker heading)))
- (goto-char (marker-position
- ,(org-velocity-heading-marker heading)))))))
- (defun org-velocity-edit-entry (heading)
- "Edit entry at HEADING in an indirect buffer."
- (let ((buffer (make-indirect-buffer
- (marker-buffer (org-velocity-heading-marker heading))
- (generate-new-buffer-name
- (org-velocity-heading-name heading)))))
- (with-current-buffer buffer
- (let ((org-inhibit-startup t))
- (org-mode))
- (goto-char (marker-position (org-velocity-heading-marker heading)))
- (narrow-to-region (point)
- (save-excursion
- (org-end-of-subtree)
- (point)))
- (goto-char (point-min))
- (add-hook 'org-ctrl-c-ctrl-c-hook 'org-velocity-dismiss nil t))
- (pop-to-buffer buffer)
- (message "%s" "Use C-c C-c to save changes.")))
- (defun org-velocity-dismiss ()
- "Save current entry and close indirect buffer."
- (progn
- (save-buffer)
- (kill-buffer)))
- (defun org-velocity-buttonize (heading)
- "Insert HEADING as a text button."
- (insert (format "#%c " (nth (1- (line-number-at-pos)) org-velocity-index)))
- (insert-text-button
- (org-velocity-heading-name heading)
- 'action (org-velocity-make-button-action heading))
- (newline))
- (defun org-velocity-insert-heading (heading)
- "Add a new heading named HEADING."
- (with-current-buffer (org-velocity-bucket-buffer)
- (goto-char (point-max))
- (newline)
- (org-insert-heading) (insert heading)
- (newline)
- (goto-char (point-max))))
- (defun org-velocity-remember (heading &optional region)
- "Use `org-remember' to record a note to HEADING.
- If there is a REGION that will be inserted."
- (let ((org-remember-templates
- (list (list
- "Velocity entry"
- ?v
- (let ((string "* %s\n\n%%?"))
- (if region
- (format (concat string "%s") heading region)
- (format string heading)))
- (org-velocity-use-file)
- org-velocity-remember-method))))
- (org-remember nil ?v)))
- (defun org-velocity-all-search (search)
- "Return entries containing all words in SEARCH."
- (when (file-exists-p (org-velocity-use-file))
- (save-excursion
- (delq nil
- (let ((keywords
- (mapcar 'org-velocity-quote
- (split-string search)))
- (case-fold-search t))
- (apply 'nconc
- (org-map-entries
- (lambda ()
- (let ((limit (save-excursion (org-end-of-subtree)
- (point))))
- (catch 'fail
- (mapcar
- (lambda (word)
- (or (save-excursion
- (and (re-search-forward word limit t)
- (org-velocity-nearest-heading
- (match-beginning 0))))
- (throw 'fail nil)))
- keywords)))))))))))
- (defun org-velocity-generic-search (search)
- "Return entries containing SEARCH."
- (save-excursion
- (delq nil
- (nreverse
- (let (matches (case-fold-search t))
- (goto-char (point-min))
- (while (re-search-forward search
- (point-max) t)
- (push (org-velocity-nearest-heading (match-beginning 0))
- matches)
- (outline-next-heading))
- matches)))))
- (defsubst org-velocity-phrase-search (search)
- "Return entries containing SEARCH as a phrase."
- (org-velocity-generic-search (org-velocity-quote search)))
- (defsubst org-velocity-any-search (search)
- "Return entries containing any word in SEARCH."
- (org-velocity-generic-search (org-velocity-quote (split-string search))))
- (defun org-velocity-present (headings)
- "Buttonize HEADINGS in `org-velocity-display-buffer'."
- (and (listp headings) (delete-dups headings))
- (let ((cdr (nthcdr
- (1- (length org-velocity-index))
- headings)))
- (and (consp cdr) (setcdr cdr nil)))
- (with-current-buffer (org-velocity-display-buffer)
- (mapc
- 'org-velocity-buttonize
- headings)
- (goto-char (point-min))))
- (defun org-velocity-new (search &optional ask)
- "Create new heading named SEARCH.
- If ASK is non-nil, ask first."
- (if (or (null ask)
- (y-or-n-p "No match found, create? "))
-
- (let ((region (if (use-region-p)
- (buffer-substring
- (region-beginning)
- (region-end)))))
- (if org-velocity-use-remember
- (org-velocity-remember search region)
- (progn
- (org-velocity-insert-heading search)
- (switch-to-buffer (org-velocity-bucket-buffer))
- (when region (insert region))))
- (when region (message "%s" "Inserted region"))
- search)))
- (defun org-velocity-engine (search)
- "Display a list of headings where SEARCH occurs."
- (with-current-buffer (org-velocity-display-buffer) (erase-buffer))
- (unless (string-equal "" search)
- (case
- (with-current-buffer (org-velocity-bucket-buffer)
- (save-excursion
- (let ((matches
- (case org-velocity-search-method
- ('phrase (org-velocity-phrase-search search))
- ('any (org-velocity-any-search search))
- ('all (org-velocity-all-search search)))))
- (org-velocity-present matches)
- (cond ((zerop (length matches)) 'new)
- ((= (length matches) 1) 'follow)
- ((> (length matches) 1) 'prompt)))))
- ('prompt (progn
- (display-buffer (org-velocity-display-buffer))
- (case (org-velocity-follow-hint)
- ('edit (org-velocity-read nil search))
- ('new (org-velocity-new search)))))
- ('new (unless (org-velocity-new search t)
- (org-velocity-read nil search)))
- ('follow (if (y-or-n-p "One match, follow? ")
- (progn
- (set-buffer (org-velocity-display-buffer))
- (goto-char (point-min))
- (button-activate (next-button (point))))
- (org-velocity-read nil search))))))
- (defun org-velocity-list-position (elt list)
- "Return first position of ELT in LIST"
- (let ((copy (copy-list list)))
- (1-
- (length
- (progn
- (setcdr (member elt copy) nil)
- copy)))))
- (defun org-velocity-activate-button (char)
- "Go to button on line number associated with CHAR in `org-velocity-index'."
- (goto-char (point-min))
- (forward-line (org-velocity-list-position char org-velocity-index))
- (goto-char
- (button-start
- (next-button (point))))
- (message "%s" (button-label (button-at (point))))
- (button-activate (button-at (point))))
- (defun org-velocity-follow-hint ()
- "Prompt for index of button."
- (let ((hint
- (read-key
- "Follow (0 for new note, RET to edit search, TAB to scroll): ")))
- (cond
-
- ((or (eq hint 7)
- (eq hint 27))
- (keyboard-quit))
-
- ((eq hint 48)
- 'new)
-
- ((or (eq hint 13)
- (eq hint 10))
- 'edit)
-
- ((eq hint 9)
- (let ((other-window-scroll-buffer
- (org-velocity-display-buffer)))
- (scroll-other-window))
- (org-velocity-follow-hint))
-
- ((mouse-event-p hint)
- (mouse-set-point hint)
- (if (button-at (point))
- (push-button (point))
- (org-velocity-follow-hint)))
-
- ((not (memq hint org-velocity-index))
- (org-velocity-follow-hint))
-
- ((> (org-velocity-list-position hint org-velocity-index)
- (with-current-buffer (org-velocity-display-buffer)
- (1- (count-lines (point-min) (point-max)))))
- (org-velocity-follow-hint))
-
- (t (set-buffer (org-velocity-display-buffer))
- (org-velocity-activate-button hint)))))
- (defun org-velocity-read-string (prompt &optional initial-input)
- "Read string using `read-string', with PROMPT followed by INITIAL-INPUT."
-
-
-
- (let ((minibuffer-setup-hook minibuffer-setup-hook))
- (add-hook 'minibuffer-setup-hook (lambda ()
- (and initial-input (insert initial-input))
- (goto-char (point-max))))
- (if (and org-velocity-use-completion
-
- (file-exists-p (org-velocity-use-file)))
- (completing-read
- prompt
- (with-current-buffer (org-velocity-bucket-buffer)
- (org-map-entries
- (lambda ()
- (substring-no-properties
- (org-get-heading))))))
- (read-string prompt))))
- (defun org-velocity-read (arg &optional search)
- "Read a search string SEARCH for Org-Velocity interface.
- This means that a buffer will display all headings where SEARCH
- occurs, where one can be selected by a mouse click or by typing
- its index. If SEARCH does not occur, then a new heading may be
- created named SEARCH.
- If `org-velocity-bucket' is defined and
- `org-velocity-always-use-bucket' is non-nil, then the bucket file
- will be used; otherwise, this will work when called in any Org
- file. Calling with ARG forces current file."
- (interactive "P")
- (let ((org-velocity-always-use-bucket
- (if arg nil org-velocity-always-use-bucket)))
-
- (assert (org-velocity-use-file))
- (unwind-protect
- (org-velocity-engine
- (org-velocity-read-string "Velocity search: " search))
- (progn
- (kill-buffer (org-velocity-display-buffer))
- (delete-other-windows)))))
- (provide 'org-velocity)
|