Rename user option to denote-backlinks-display-buffer-action

This commit is contained in:
Protesilaos Stavrou 2024-07-25 10:02:58 +03:00
parent 295187bc6a
commit d28a7c1a2c
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
2 changed files with 19 additions and 10 deletions

View file

@ -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

View file

@ -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)