summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2015-03-06 02:15:47 -0500
committerKyle Meyer <kyle@kyleam.com>2015-03-06 02:15:47 -0500
commit26db2febb7382f003cabd401dedee6f5fe6f5bc4 (patch)
treeaac1b5d27d4206ff9b9d16f43c4171bfae701ad3
parent1e7bc9f3ff362f53a87c02999ea6928535770c65 (diff)
parent4724604e72396d6cdf4371f0263ed55b2a646d40 (diff)
downloadbog-26db2febb7382f003cabd401dedee6f5fe6f5bc4.tar.gz
Merge branch 'remove-notes-goto'
-rw-r--r--NEWS10
-rw-r--r--bog.el71
2 files changed, 30 insertions, 51 deletions
diff --git a/NEWS b/NEWS
index a19df0e..d3f851e 100644
--- a/NEWS
+++ b/NEWS
@@ -47,8 +47,7 @@
- =bog-create-combined-bib= now supports collecting citekeys from
marked files in a Dired buffer.
-- =bog-goto-citekey-heading-in-buffer= and
- =bog-goto-citekey-heading-in-notes= now work when citekeys are
+- =bog-goto-citekey-heading-in-notes= now works when citekeys are
stored are stored as property values.
- New command =bog-list-duplicate-heading-citekeys= finds citekeys
@@ -66,8 +65,11 @@
** Other changes
-- =bog-goto-citekey-heading-in-buffer= and
- =bog-goto-citekey-heading-in-notes= will now widen the buffer if the
+- The command =bog-goto-citekey-heading-in-buffer= has been removed.
+ Similar behavior is now available when a double C-u is used as the
+ prefix argument to =bog-goto-citekey-heading-in-notes=.
+
+- =bog-goto-citekey-heading-in-notes= now widens the buffer if the
heading is outside of the narrowed region.
- The format for citekeys is now restricted to letters, digits,
diff --git a/bog.el b/bog.el
index c6fc564..6bd526d 100644
--- a/bog.el
+++ b/bog.el
@@ -873,30 +873,37 @@ 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.
+(defun bog-goto-citekey-heading-in-notes (&optional no-context)
+ "Find citekey heading in notes.
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.
+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'.
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
+ (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
- (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))))
+ (pop-to-buffer (marker-buffer marker))
+ (when (or (< marker (point-min))
+ (> marker (point-max)))
+ (widen))
+ (goto-char marker)
+ (org-show-context))
+ (message "Heading for %s not found in notes" citekey))))
(defun bog--find-citekey-heading-in-buffer (citekey &optional pos-only)
"Return the marker of heading for CITEKEY.
@@ -928,34 +935,6 @@ is non-nil, return the position instead of a marker."
(point)
(move-marker (make-marker) (point))))))))))))
-(defun bog-goto-citekey-heading-in-notes (&optional no-context)
- "Find citekey heading in notes.
-
-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.
-
-If the citekey prompt is slow to appear, consider enabling the
-`heading' category in `bog-use-citekey-cache'.
-
-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))
- (marker (bog--find-citekey-heading-in-notes citekey)))
- (if marker
- (progn
- (pop-to-buffer (marker-buffer marker))
- (when (or (< marker (point-min))
- (> marker (point-max)))
- (widen))
- (goto-char marker)
- (org-show-context))
- (message "Heading for %s not found in notes" citekey))))
-
(defun bog--find-citekey-heading-in-notes (citekey)
"Return the marker of heading for CITEKEY in notes.
CITEKEY can either be the heading title or the property value of
@@ -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)