summaryrefslogtreecommitdiff
path: root/bog.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-03-06 02:03:21 -0500
committerKyle Meyer <kyle@kyleam.com>2015-03-06 02:03:21 -0500
commit6baf69ba88998595940daab8896724ba430a4d2a (patch)
tree82c73e2ae881a3020180a1d323d176c9e7779685 /bog.el
parent1e7bc9f3ff362f53a87c02999ea6928535770c65 (diff)
downloadbog-6baf69ba88998595940daab8896724ba430a4d2a.tar.gz
Remove bog-goto-citekey-heading-in-buffer
This command wasn't too useful because, within a buffer, a citekey heading can easily be jumped to with the standard org-goto interface. Also, bog-goto-citekey-heading-in-notes will check the current file first, so it behaves the same as bog-goto-citekey-heading-in-buffer, except that it prompts with all citekeys instead of just those in the current buffer. Because a prompt limited to citekeys from the current buffer can be useful, make this prompt available with a double C-u.
Diffstat (limited to 'bog.el')
-rw-r--r--bog.el43
1 files changed, 10 insertions, 33 deletions
diff --git a/bog.el b/bog.el
index c6fc564..adfe25c 100644
--- a/bog.el
+++ b/bog.el
@@ -873,31 +873,6 @@ Groups are specified by `bog-citekey-web-search-groups'."
;;; Notes-related
-(defun bog-goto-citekey-heading-in-buffer (&optional no-context)
- "Find citekey heading in this buffer.
-
-The citekey is taken from the text under point if it matches
-`bog-citekey-format'.
-
-With prefix argument NO-CONTEXT, prompt with citekeys that have a
-heading in the current buffer. Do the same if locating a citekey
-from context fails.
-
-If the heading is found outside any current narrowing of the
-buffer, the narrowing is removed."
- (interactive "P")
- (let* ((citekey (bog-citekey-from-point-or-buffer-headings no-context))
- (pos (bog--find-citekey-heading-in-buffer citekey)))
- (if pos
- (progn
- (when (or (< pos (point-min))
- (> pos (point-max)))
- (widen))
- (org-mark-ring-push)
- (goto-char pos)
- (org-show-context))
- (message "Heading for %s not found in buffer" citekey))))
-
(defun bog--find-citekey-heading-in-buffer (citekey &optional pos-only)
"Return the marker of heading for CITEKEY.
CITEKEY can either be the heading title or the property value of
@@ -934,9 +909,11 @@ is non-nil, return the position instead of a marker."
The citekey is taken from the text under point if it matches
`bog-citekey-format'.
-With prefix argument NO-CONTEXT, prompt with citekeys that have a
-heading in any note file. Do the same if locating a citekey from
-context fails.
+When the prefix argument NO-CONTEXT is given by a single
+\\[universal-argument], prompt with citekeys that have a heading
+in any note file. Do the same if locating a citekey from context
+fails. With a double \\[universal-argument], restrict the prompt
+to citekeys that have a heading in the current buffer.
If the citekey prompt is slow to appear, consider enabling the
`heading' category in `bog-use-citekey-cache'.
@@ -944,7 +921,9 @@ If the citekey prompt is slow to appear, consider enabling the
If the heading is found outside any current narrowing of the
buffer, the narrowing is removed."
(interactive "P")
- (let* ((citekey (bog-citekey-from-point-or-all-headings no-context))
+ (let* ((citekey (if (equal no-context '(16))
+ (bog-citekey-from-point-or-buffer-headings no-context)
+ (bog-citekey-from-point-or-all-headings no-context)))
(marker (bog--find-citekey-heading-in-notes citekey)))
(if marker
(progn
@@ -1324,8 +1303,7 @@ chosen."
(define-key prefix-map "c" 'bog-search-notes-for-citekey)
(define-key prefix-map "f" 'bog-find-citekey-file)
(define-key prefix-map "g" 'bog-search-citekey-on-web)
- (define-key prefix-map "h" 'bog-goto-citekey-heading-in-buffer)
- (define-key prefix-map "H" 'bog-goto-citekey-heading-in-notes)
+ (define-key prefix-map "h" 'bog-goto-citekey-heading-in-notes)
(define-key prefix-map "i" 'bog-citekey-tree-to-indirect-buffer)
(define-key prefix-map "j" 'bog-jump-to-topic-heading)
(define-key prefix-map "l" 'bog-open-citekey-link)
@@ -1372,8 +1350,7 @@ if ARG is omitted or nil.
(define-key map "c" 'bog-search-notes-for-citekey)
(define-key map "f" 'bog-find-citekey-file)
(define-key map "g" 'bog-search-citekey-on-web)
- (define-key map "h" 'bog-goto-citekey-heading-in-buffer)
- (define-key map "H" 'bog-goto-citekey-heading-in-notes)
+ (define-key map "h" 'bog-goto-citekey-heading-in-notes)
(define-key map "i" 'bog-citekey-tree-to-indirect-buffer)
(define-key map "j" 'bog-jump-to-topic-heading)
(define-key map "l" 'bog-open-citekey-link)