[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/denote d28a7c1a2c 5/8: Rename user option to denote-bac
From: |
ELPA Syncer |
Subject: |
[elpa] externals/denote d28a7c1a2c 5/8: Rename user option to denote-backlinks-display-buffer-action |
Date: |
Thu, 25 Jul 2024 03:58:09 -0400 (EDT) |
branch: externals/denote
commit d28a7c1a2c836f6e7975567152418ea4bd0cfdc0
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Rename user option to denote-backlinks-display-buffer-action
---
README.org | 20 ++++++++++++--------
denote.el | 9 +++++++--
2 files changed, 19 insertions(+), 10 deletions(-)
diff --git a/README.org b/README.org
index da13e2a965..a3571bde00 100644
--- a/README.org
+++ b/README.org
@@ -2691,17 +2691,17 @@ Backlinks to the current file can also be visited by
using the
minibuffer completion interface with the ~denote-find-backlink~
command ([[#h:1bc2adad-dca3-4878-b9f0-b105d5dec6f4][Visiting linked files via
the minibuffer]]).
-#+vindex: denote-link-backlinks-display-buffer-action
+#+vindex: denote-backlinks-display-buffer-action
The placement of the backlinks' buffer is subject to the user option
-~denote-link-backlinks-display-buffer-action~. Due to the nature of the
+~denote-backlinks-display-buffer-action~. Due to the nature of the
underlying ~display-buffer~ mechanism, this inevitably is a relatively
-advanced feature. By default, the backlinks' buffer is displayed below
-the current window. The doc string of our user option includes a sample
-configuration that places the buffer in a left side window instead.
-Reproducing it here for the sake of convenience:
+advanced feature. By default, the backlinks' buffer is displayed below
+the current window. The doc string of our user option includes a
+sample configuration that places the buffer in a left side window
+instead. Reproducing it here for the sake of convenience:
#+begin_src emacs-lisp
-(setq denote-link-backlinks-display-buffer-action
+(setq denote-backlinks-display-buffer-action
'((display-buffer-reuse-window
display-buffer-in-side-window)
(side . left)
@@ -2711,6 +2711,10 @@ Reproducing it here for the sake of convenience:
(preserve-size . (t . t))))
#+end_src
+[ As part of {{{development-version}}}, the user option
+ ~denote-link-backlinks-display-buffer-action~ is now called
+ ~denote-backlinks-display-buffer-action~. ]
+
*** Backlinks for Org headings
:PROPERTIES:
:CUSTOM_ID: h:604bf92a-908a-485c-98b8-37ccae559afd
@@ -4339,7 +4343,7 @@ Everything is in place to set up the package.
;; file names. This provides a more informative view.
(setq denote-backlinks-show-context t)
-;; Also see `denote-link-backlinks-display-buffer-action' which is a bit
+;; Also see `denote-backlinks-display-buffer-action' which is a bit
;; advanced.
;; If you use Markdown or plain text files (Org renders links as buttons
diff --git a/denote.el b/denote.el
index ea973ba3bc..82dcd56aac 100644
--- a/denote.el
+++ b/denote.el
@@ -539,7 +539,12 @@ current note."
(make-obsolete-variable 'denote-rename-no-confirm 'denote-rename-confirmations
"3.0.0")
-(defcustom denote-link-backlinks-display-buffer-action
+(define-obsolete-variable-alias
+ 'denote-link-backlinks-display-buffer-action
+ 'denote-backlinks-display-buffer-action
+ "3.1.0")
+
+(defcustom denote-backlinks-display-buffer-action
'((display-buffer-reuse-window display-buffer-below-selected)
(window-height . fit-window-to-buffer)
(dedicated . t)
@@ -567,7 +572,7 @@ and/or the documentation string of `display-buffer'."
:type '(cons (choice (function :tag "Display Function")
(repeat :tag "Display Functions" function))
alist)
- :package-version '(denote . "3.0.0")
+ :package-version '(denote . "3.1.0")
:group 'denote)
(defcustom denote-rename-confirmations '(rewrite-front-matter modify-file-name)
- [elpa] externals/denote updated (46ecf930a0 -> 5a9328bdb0), ELPA Syncer, 2024/07/25
- [elpa] externals/denote 7531208411 2/8: Bump version to trigger GNU ELPA package rebuild, ELPA Syncer, 2024/07/25
- [elpa] externals/denote 0511307fa8 7/8: Make sure denote-link--prepare-backlinks works without BUFFER argument, ELPA Syncer, 2024/07/25
- [elpa] externals/denote 8a2d7afbef 3/8: Remove needless denote-link group, ELPA Syncer, 2024/07/25
- [elpa] externals/denote dc61708c5f 1/8: Do not try to search for xrefs if there are no files, ELPA Syncer, 2024/07/25
- [elpa] externals/denote d28a7c1a2c 5/8: Rename user option to denote-backlinks-display-buffer-action,
ELPA Syncer <=
- [elpa] externals/denote cae8decee1 6/8: Fix some missing symbol renames from commit d28a7c1, ELPA Syncer, 2024/07/25
- [elpa] externals/denote 295187bc6a 4/8: Reposition a user option closer towards the top, ELPA Syncer, 2024/07/25
- [elpa] externals/denote 5a9328bdb0 8/8: Fix error in commit 0511307, ELPA Syncer, 2024/07/25