[nongnu] elpa/helm-core updated (179e6c30aa -> 120857ec20)

2023-07-04 Thread ELPA Syncer
elpasync pushed a change to branch elpa/helm-core.

  from  179e6c30aa Forget to remove the icon FCT in read-file-name
  adds  2cd0c2f236 Fail safe with helm-ff-icon-mode (#2605)
  adds  d4f18d4fb9 Fail safe when all-the-icons is not installed
  adds  120857ec20 Use message instead of user-error

No new revisions were added by this update.

Summary of changes:
 helm-bookmark.el | 11 +++
 helm-buffers.el  | 14 --
 helm-files.el| 18 +++---
 helm-imenu.el| 20 +++-
 4 files changed, 37 insertions(+), 26 deletions(-)



[nongnu] elpa/helm d4f18d4fb9 2/3: Fail safe when all-the-icons is not installed

2023-07-04 Thread ELPA Syncer
branch: elpa/helm
commit d4f18d4fb9a3028d119b02d79aca6d03e6c5c4d6
Author: Thierry Volpiatto 
Commit: Thierry Volpiatto 

Fail safe when all-the-icons is not installed

with bookmarks, imenu and buffers.
---
 helm-bookmark.el | 11 +++
 helm-buffers.el  | 14 --
 helm-imenu.el| 20 +++-
 3 files changed, 30 insertions(+), 15 deletions(-)

diff --git a/helm-bookmark.el b/helm-bookmark.el
index e34ed40e25..d1471fb5e4 100644
--- a/helm-bookmark.el
+++ b/helm-bookmark.el
@@ -58,8 +58,13 @@
   :type '(repeat (choice symbol)))
 
 (defcustom helm-bookmark-use-icon nil
-  "Display candidates with an icon with `all-the-icons' when non nil."
-  :type 'boolean)
+  "Display candidates with an icon with `all-the-icons' when non nil.
+Don't use `setq' to set this."
+  :type 'boolean
+  :set (lambda (var val)
+ (if (featurep 'all-the-icons)
+ (set var val)
+   (set var nil
 
 (defcustom helm-bookmark-default-sort-method 'adaptive
   "Sort method for `helm-filtered-bookmarks'.
@@ -810,8 +815,6 @@ E.g. prepended with *."
 Optional source `helm-source-bookmark-addressbook' is loaded only
 if external addressbook-bookmark package is installed."
   (interactive)
-  (when helm-bookmark-use-icon
-(require 'all-the-icons))
   (helm :sources helm-bookmark-default-filtered-sources
 :prompt "Search Bookmark: "
 :buffer "*helm filtered bookmarks*"
diff --git a/helm-buffers.el b/helm-buffers.el
index d9bf199adc..3493ad39c9 100644
--- a/helm-buffers.el
+++ b/helm-buffers.el
@@ -144,8 +144,13 @@ you want to keep the recentest order when narrowing 
candidates."
   :type 'function)
 
 (defcustom helm-buffers-show-icons nil
-  "Prefix buffer names with an icon when non nil."
-  :type 'boolean)
+  "Prefix buffer names with an icon when non nil.
+Don't use `setq' to set this."
+  :type 'boolean
+  :set (lambda (var val)
+ (if (featurep 'all-the-icons)
+ (set var val)
+   (set var nil
 
 
 ;;; Faces
@@ -533,10 +538,7 @@ The list is reordered with `helm-buffer-list-reorder-fn'."
 Should be called after others transformers i.e. (boring
 buffers)."
   (cl-assert helm-fuzzy-matching-highlight-fn nil "Wrong type argument 
functionp: nil")
-  (cl-loop with helm-buffers-show-icons = (and (featurep 'all-the-icons)
-   (default-toplevel-value
-   'helm-buffers-show-icons))
-   for i in buffers
+  (cl-loop for i in buffers
for (name size mode meta) = (if helm-buffer-details-flag
(helm-buffer--details i 'details)
  (helm-buffer--details i))
diff --git a/helm-imenu.el b/helm-imenu.el
index 6e68389b64..c51f9e0627 100644
--- a/helm-imenu.el
+++ b/helm-imenu.el
@@ -95,14 +95,25 @@ string."
 (defcustom helm-imenu-hide-item-type-name nil
   "Hide display name of imenu item type along with the icon when non nil.
 
-This value can be toggled with 
[helm-imenu-toggle-type-view]."
+This value can be toggled with 
[helm-imenu-toggle-type-view].
+Don't use `setq' to set this."
   :group 'helm-imenu
-  :type 'boolean)
+  :type 'boolean
+  :set (lambda (var val)
+ (if (featurep 'all-the-icons)
+ (set var val)
+   (set var nil
 
 (defcustom helm-imenu-use-icon nil
-  "Display an icon from all-the-icons package when non nil."
+  "Display an icon from all-the-icons package when non nil.
+
+Don't use `setq' to set this."
   :group 'helm-imenu
-  :type 'boolean)
+  :type 'boolean
+  :set (lambda (var val)
+ (if (featurep 'all-the-icons)
+ (set var val)
+   (set var nil
 
 (defcustom helm-imenu-icon-type-alist
   '(("Array"   . (all-the-icons-material "crop" :face 
font-lock-builtin-face))
@@ -420,7 +431,6 @@ The sexp should be an `all-the-icons' function with its 
args."
   "Return an icon for type TYPE.
 The icon is found in `helm-imenu-icon-type-alist', if not
 `helm-imenu-default-type-sexp' is evaled to provide a default icon."
-  (require 'all-the-icons)
   (let ((all-the-icons-scale-factor 1.0)
 (all-the-icons-default-adjust 0.0))
 (or (helm-aand (assoc-default



[nongnu] elpa/helm 120857ec20 3/3: Use message instead of user-error

2023-07-04 Thread ELPA Syncer
branch: elpa/helm
commit 120857ec2008c298b64587d59350d6297601daa2
Author: Thierry Volpiatto 
Commit: Thierry Volpiatto 

Use message instead of user-error

user-error fails at init, so fail safe when user have
(helm-ff-icon-mode 1) in init file.
---
 helm-files.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-files.el b/helm-files.el
index b485ebe7c6..69e74c3983 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -4289,7 +4289,7 @@ Arg DISP is the display part of the candidate."
   (when helm-ff-icon-mode
 (unless (require 'all-the-icons nil t)
   (setq helm-ff-icon-mode nil)
-  (user-error "All The Icons package is not installed")))
+  (message "All The Icons package is not installed")))
   (clrhash helm-ff--list-directory-cache))
 
 (defun helm-find-files-action-transformer (actions candidate)



[nongnu] elpa/helm updated (179e6c30aa -> 120857ec20)

2023-07-04 Thread ELPA Syncer
elpasync pushed a change to branch elpa/helm.

  from  179e6c30aa Forget to remove the icon FCT in read-file-name
   new  2cd0c2f236 Fail safe with helm-ff-icon-mode (#2605)
   new  d4f18d4fb9 Fail safe when all-the-icons is not installed
   new  120857ec20 Use message instead of user-error


Summary of changes:
 helm-bookmark.el | 11 +++
 helm-buffers.el  | 14 --
 helm-files.el| 18 +++---
 helm-imenu.el| 20 +++-
 4 files changed, 37 insertions(+), 26 deletions(-)



[nongnu] elpa/helm 2cd0c2f236 1/3: Fail safe with helm-ff-icon-mode (#2605)

2023-07-04 Thread ELPA Syncer
branch: elpa/helm
commit 2cd0c2f236e13378cfd9684eb34dc02e86982a88
Author: Thierry Volpiatto 
Commit: Thierry Volpiatto 

Fail safe with helm-ff-icon-mode (#2605)
---
 helm-files.el | 18 +++---
 1 file changed, 7 insertions(+), 11 deletions(-)

diff --git a/helm-files.el b/helm-files.el
index 3cff97ef66..b485ebe7c6 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -849,9 +849,8 @@ present in this list."
   :initialize 'custom-initialize-changed
   :set (lambda (var val)
  (set var val)
- (setq helm-source-find-files nil)
- (when helm-ff-icon-mode
-   (helm-ff-icon-mode 1
+ ;; Force rebuilding the source to remove the highlight match FCT.
+ (setq helm-source-find-files nil)))
 
 (defcustom helm-ff-edit-marked-files-fn (if (< emacs-major-version 29)
 #'helm-ff-wfnames
@@ -4284,14 +4283,13 @@ Arg DISP is the display part of the candidate."
 
 ;;;###autoload
 (define-minor-mode helm-ff-icon-mode
-"Display icons from `all-the-icons' package in HFF when enabled.
-
-NOTE: This mode is building `helm-source-find-files', so if you enable
-it from your init file, ensure to call it _after_ your defmethod's
-`helm-setup-user-source' definitions (if some) to ensure they are called."
+"Display icons from `all-the-icons' package in HFF when enabled."
   :global t
   :group 'helm-files
-  (require 'all-the-icons)
+  (when helm-ff-icon-mode
+(unless (require 'all-the-icons nil t)
+  (setq helm-ff-icon-mode nil)
+  (user-error "All The Icons package is not installed")))
   (clrhash helm-ff--list-directory-cache))
 
 (defun helm-find-files-action-transformer (actions candidate)
@@ -5350,8 +5348,6 @@ When no suitable place to drop is found ask to drop to
 
 Use it for non-interactive calls of `helm-find-files'."
   (require 'tramp)
-  (unless (featurep 'all-the-icons)
-(helm-ff-icon-mode -1))
   ;; Resolve FNAME now outside of helm.
   ;; [FIXME] When `helm-find-files-1' is used directly from lisp
   ;; and FNAME is an abbreviated path, for some reasons



[elpa] externals/corfu 7353327e8b: corfu-quick: Fix display position if corfu--base/=""

2023-07-04 Thread ELPA Syncer
branch: externals/corfu
commit 7353327e8bc6e29c4905aa24efffd0ffe66382c2
Author: Daniel Mendler 
Commit: Daniel Mendler 

corfu-quick: Fix display position if corfu--base/=""
---
 extensions/corfu-quick.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/extensions/corfu-quick.el b/extensions/corfu-quick.el
index c8e0084fad..3ac8962c6c 100644
--- a/extensions/corfu-quick.el
+++ b/extensions/corfu-quick.el
@@ -117,7 +117,8 @@ TWO is non-nil if two keys should be displayed."
 (cons t cands)))
  ;; Increase minimum width to avoid odd jumping
  (corfu-min-width (+ 3 corfu-min-width)))
-(corfu--candidates-popup (posn-at-point (car completion-in-region--data)))
+(corfu--candidates-popup
+ (posn-at-point (+ (car completion-in-region--data) (length corfu--base
 (alist-get (read-key) list)))
 
 ;;;###autoload



[elpa] externals/org 48fffa5dac: org-insert-link: Keep the link in `org-stored-links' if it was not inserted

2023-07-04 Thread ELPA Syncer
branch: externals/org
commit 48fffa5daca3e13e4c5ff3928e3b1858cf2bab6b
Author: Evgenii Klimov 
Commit: Ihor Radchenko 

org-insert-link: Keep the link in `org-stored-links' if it was not inserted

* lisp/ol.el (org-insert-link): Keep the link in `org-stored-links' if
the command was interrupted by the user during the reading of a
description from the minibuffer.

TINYCHANGE
---
 lisp/ol.el | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lisp/ol.el b/lisp/ol.el
index d2aa20cb4c..6dd7e0fa1d 100644
--- a/lisp/ol.el
+++ b/lisp/ol.el
@@ -1820,7 +1820,7 @@ non-interactively, don't allow to edit the default 
description."
 (all-prefixes (append (mapcar #'car abbrevs)
   (mapcar #'car org-link-abbrev-alist)
   (org-link-types)))
- entry)
+ entry link-original)
 (cond
  (link-location) ; specified by arg, just use it.
  ((org-in-regexp org-link-bracket-re 1)
@@ -1896,11 +1896,7 @@ Use TAB to complete link prefixes, then RET for 
type-specific completion support
   (or entry (push link org-link--insert-history))
   (setq desc (or desc (nth 1 entry)
 
-(when (funcall (if (equal complete-file '(64)) 'not 'identity)
-  (not org-link-keep-stored-after-insertion))
-  (setq org-stored-links (delq (assoc link org-stored-links)
-  org-stored-links)))
-
+(setq link-original link)
 (when (and (string-match org-link-plain-re link)
   (not (string-match org-ts-regexp link)))
   ;; URL-like link, normalize the use of angular brackets.
@@ -1995,6 +1991,10 @@ Use TAB to complete link prefixes, then RET for 
type-specific completion support
  (read-string "Description: " initial-input)
initial-input)))
 
+(when (funcall (if (equal complete-file '(64)) 'not 'identity)
+   (not org-link-keep-stored-after-insertion))
+  (setq org-stored-links (delq (assoc link-original org-stored-links)
+   org-stored-links)))
 (unless (org-string-nw-p desc) (setq desc nil))
 (when remove (apply #'delete-region remove))
 (insert (org-link-make-string link desc))



[nongnu] elpa/helm 3de4f8bbd7: Use specialized icons for dirs

2023-07-04 Thread ELPA Syncer
branch: elpa/helm
commit 3de4f8bbd798b26e2f3182ab4b02611d11b2b65e
Author: Thierry Volpiatto 
Commit: Thierry Volpiatto 

Use specialized icons for dirs
---
 helm-files.el | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/helm-files.el b/helm-files.el
index 69e74c3983..3852d47ad3 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -4238,11 +4238,16 @@ If SKIP-BORING-CHECK is non nil don't filter boring 
files."
 
 (defun helm-ff-get-icon (disp file)
   "Get icon from all-the-icons for FILE.
-Arg DISP is the display part of the candidate."
+Arg DISP is the display part of the candidate.
+Arg FILE is the real part of candidate, a filename with no props."
   (when helm-ff-icon-mode
 (let ((icon (helm-acond (;; Non symlink directories.
  (helm-ff--is-dir-from-disp disp)
- (all-the-icons-octicon "file-directory"))
+ (helm-aif (all-the-icons-match-to-alist
+(helm-basename file)
+all-the-icons-dir-icon-alist)
+ (apply (car it) (cdr it))
+   (all-the-icons-octicon "file-directory")))
 (;; All files, symlinks may be symlink directories.
  (helm-ff--is-file-from-disp disp)
  ;; Detect symlink directories. We must call
@@ -4252,12 +4257,7 @@ Arg DISP is the display part of the candidate."
  (if (and (memq it '(helm-ff-symlink
  
helm-ff-dotted-symlink-directory))
   (file-directory-p file))
- (let* ((icon (all-the-icons-match-to-alist
-   (helm-basename file)
-   all-the-icons-dir-icon-alist))
-(args (cdr icon)))
-   (apply #'all-the-icons-octicon
-  "file-symlink-directory" (cdr args)))
+ (all-the-icons-octicon 
"file-symlink-directory")
(all-the-icons-icon-for-file file))
   (when icon (concat icon " ")
 



[nongnu] elpa/helm-core updated (120857ec20 -> 3de4f8bbd7)

2023-07-04 Thread ELPA Syncer
elpasync pushed a change to branch elpa/helm-core.

  from  120857ec20 Use message instead of user-error
  adds  3de4f8bbd7 Use specialized icons for dirs

No new revisions were added by this update.

Summary of changes:
 helm-files.el | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)



[elpa] externals/cpupower 6d5fb9c838: tested with updated version.t

2023-07-04 Thread ELPA Syncer
branch: externals/cpupower
commit 6d5fb9c838c49806be57821c8cb8d444be814895
Author: steve m 
Commit: steve m 

tested with updated version.t
---
 cpupower.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpupower.el b/cpupower.el
index 29343d689d..de499201b7 100644
--- a/cpupower.el
+++ b/cpupower.el
@@ -64,7 +64,7 @@ messages buffer"
   :group 'cpupower)
 
 (defconst cpupower--compatible-versions
-  '("5.4" "5.10" "5.12")
+  '("5.4" "5.10" "5.12" "5.18")
   "Versions of cpupower which cpupower.el can work with.
 
 It is possible that other versions of cpupower have the same



[elpa] externals/realgud 220ce2c348: Start giving instructions of bug reporting.

2023-07-04 Thread ELPA Syncer
branch: externals/realgud
commit 220ce2c348dab6cfc1cfa3c3f59644e777f9e8ff
Author: rocky 
Commit: rocky 

Start giving instructions of bug reporting.
---
 .github/ISSUE_TEMPLATE/bug-report.md | 111 +++
 1 file changed, 111 insertions(+)

diff --git a/.github/ISSUE_TEMPLATE/bug-report.md 
b/.github/ISSUE_TEMPLATE/bug-report.md
new file mode 100644
index 00..415341b0bd
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.md
@@ -0,0 +1,111 @@
+---
+name: Bug report
+about: Tell us about realgud bugs
+
+---
+
+
+
+
+
+## Description
+
+
+
+## How to Reproduce
+
+
+
+## Output Given
+
+
+
+
+## Expected behavior
+
+
+
+## Environment
+
+
+
+## What you have tried to solve the problem
+
+
+
+
+
+## Workarounds
+
+
+
+## Priority
+
+
+
+## Additional Context
+
+



[elpa] externals/substitute f1eb36c9e1: Fix typo in substitute-target-to-beginning-of-buffer defalias

2023-07-04 Thread ELPA Syncer
branch: externals/substitute
commit f1eb36c9e14df99e7ce8918a0add8893b79108da
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Fix typo in substitute-target-to-beginning-of-buffer defalias

Thanks to ersi-dnd for pointing this out.  Done in issue 9 on the
GitHub mirror: .
---
 substitute.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/substitute.el b/substitute.el
index f3679de8fb..ce723e1834 100644
--- a/substitute.el
+++ b/substitute.el
@@ -6,7 +6,7 @@
 ;; Maintainer: Protesilaos Stavrou General Issues 
<~protesilaos/general-iss...@lists.sr.ht>
 ;; URL: https://git.sr.ht/~protesilaos/substitute
 ;; Mailing-List: https://lists.sr.ht/~protesilaos/general-issues
-;; Version: 0.2.0
+;; Version: 0.2.1
 ;; Package-Requires: ((emacs "27.1"))
 
 ;; This file is NOT part of GNU Emacs.
@@ -335,7 +335,7 @@ same as always calling this command with FIXED-CASE." doc)
  'above)
 
 (defalias 'substitute-target-to-beginning-of-buffer
-  'substitute-target-below-point)
+  'substitute-target-above-point)
 
 (defun substitute-report-operation (target sub count scope)
   "Print message of substitution.



[elpa] externals/denote updated (5298547b7a -> d33afd4347)

2023-07-04 Thread ELPA Syncer
elpasync pushed a change to branch externals/denote.

  from  5298547b7a denote-test: add a WIP test
   new  58835d479b Make minor edits to the description
   new  7927a9c8b1 Use "alias for" instead of "alias of"
   new  d33afd4347 Rename lots of "link" commands for simplicity


Summary of changes:
 README.org | 147 ++---
 denote.el  |  98 -
 2 files changed, 149 insertions(+), 96 deletions(-)



[elpa] externals/denote d33afd4347 3/3: Rename lots of "link" commands for simplicity

2023-07-04 Thread ELPA Syncer
branch: externals/denote
commit d33afd43471064c9cfd2e4f08fabe41b27755db0
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Rename lots of "link" commands for simplicity
---
 README.org | 136 ++---
 denote.el  |  73 -
 2 files changed, 130 insertions(+), 79 deletions(-)

diff --git a/README.org b/README.org
index 8823dfbdcc..939921a1d8 100644
--- a/README.org
+++ b/README.org
@@ -1616,8 +1616,11 @@ other links.
 :CUSTOM_ID: h:9bec2c83-36ca-4951-aefc-7187c5463f90
 :END:
 
-#+findex: denote-link-add-links
-The command ~denote-link-add-links~ adds links at point matching a
+[ The ~denote-add-links~ is the new name of ~denote-link-add-links~,
+  as part of {{{development-version}}}. ]
+
+#+findex: denote-add-links
+The command ~denote-add-links~ adds links at point matching a
 regular expression or plain string.  The links are inserted as a
 typographic list, such as:
 
@@ -1632,7 +1635,7 @@ as explained further above about the ~denote-link~ 
command.  The current
 note is excluded from the matching entries (adding a link to itself is
 pointless).
 
-When called with a prefix argument (=C-u=) ~denote-link-add-links~ will
+When called with a prefix argument (=C-u=) ~denote-add-links~ will
 format all links as =[[denote:IDENTIFIER]]=, hence a typographic list:
 
 #+begin_example
@@ -1678,14 +1681,17 @@ purposes 
([[#h:fc913d54-26c8-4c41-be86-999839e8ad31][Linking notes]]).
 :CUSTOM_ID: h:0c1fdaab-5a6b-4792-9694-fed53cd042e6
 :END:
 
-#+findex: denote-link-add-missing-links
-As a variation on the ~denote-link-add-links~ command, one may wish to
-only include 'missing links', i.e. links that are not yet present in
-the current file.
+[ The ~denote-add-missing-links~ is the new name of
+  ~denote-link-add-missing-links~, as part of {{{development-version}}}. ]
+
+#+findex: denote-add-missing-links
+As a variation on the ~denote-add-links~ command, one may wish to only
+include 'missing links', i.e. links that are not yet present in the
+current file.
 
-This can be achieved with ~denote-link-add-missing-links~. The command
-is similar to ~denote-link-add-links~, but will only include links to
-notes that are not yet linked to 
([[#h:9bec2c83-36ca-4951-aefc-7187c5463f90][Insert links matching a regexp]]).
+This can be achieved with ~denote-add-missing-links~. The command is
+similar to ~denote-add-links~, but will only include links to notes
+that are not yet linked to ([[#h:9bec2c83-36ca-4951-aefc-7187c5463f90][Insert 
links matching a regexp]]).
 
 ** Insert links from marked files in Dired
 :PROPERTIES:
@@ -1694,11 +1700,11 @@ notes that are not yet linked to 
([[#h:9bec2c83-36ca-4951-aefc-7187c5463f90][Ins
 
 #+findex: denote-link-dired-marked-notes
 The command ~denote-link-dired-marked-notes~ is similar to
-~denote-link-add-links~ in that it inserts in the buffer a typographic
-list of links to Denote notes 
([[#h:9bec2c83-36ca-4951-aefc-7187c5463f90][Insert links matching a regexp]]).  
Though
-instead of reading a regular expression, it lets the user mark files in
-Dired and link to them.  This should be easier for users of all skill
-levels, instead of having to write a potentially complex regular
+~denote-add-links~ in that it inserts in the buffer a typographic list
+of links to Denote notes ([[#h:9bec2c83-36ca-4951-aefc-7187c5463f90][Insert 
links matching a regexp]]).  Though
+instead of reading a regular expression, it lets the user mark files
+in Dired and link to them.  This should be easier for users of all
+skill levels, instead of having to write a potentially complex regular
 expression.
 
 If there are multiple buffers that visit a Denote note, this command
@@ -1776,10 +1782,11 @@ this end, Denote provides two convenience commands:
 :CUSTOM_ID: h:c73f1f68-e214-49d5-b369-e694f6a5d708
 :END:
 
-#+findex: denote-link-backlinks
-The command ~denote-link-backlinks~ produces a bespoke buffer which
+#+findex: denote-backlinks
+The command ~denote-backlinks~ produces a bespoke buffer which
 displays backlinks to the current note.  A "backlink" is a link back
-to the present entry.
+to the present entry. [ The ~denote-backlinks~ is the new name of
+~denote-link-backlinks~, as part of {{{development-version}}}.]
 
 By default, the backlinks' buffer is designed to display the file name
 of the note linking to the current entry.  Each file name is presented
@@ -1835,7 +1842,7 @@ to the relevant environment variable.
 [[#h:42f6b07e-5956-469a-8294-17f9cf62eb2b][Why do I get "Search failed with 
status 1" when I search for backlinks?]]
 
 Backlinks to the current file can also be visited by using the
-minibuffer completion interface with the ~denote-link-find-backlink~
+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
@@ -1868,8 +1875,8 @@ insi

[elpa] externals/denote 7927a9c8b1 2/3: Use "alias for" instead of "alias of"

2023-07-04 Thread ELPA Syncer
branch: externals/denote
commit 7927a9c8b14a9814ac335651230b62e4e0c1c41d
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Use "alias for" instead of "alias of"
---
 denote.el | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/denote.el b/denote.el
index b2323b94c4..3da115f444 100644
--- a/denote.el
+++ b/denote.el
@@ -1826,7 +1826,7 @@ packages such as `marginalia' and `embark')."
 ; Convenience commands as `denote' variants
 
 (defalias 'denote-create-note 'denote
-  "Alias of `denote' command.")
+  "Alias for `denote' command.")
 
 ;;;###autoload
 (defun denote-type ()
@@ -1840,7 +1840,7 @@ is set to \\='(file-type title keywords)."
 (call-interactively #'denote)))
 
 (defalias 'denote-create-note-using-type 'denote-type
-  "Alias of `denote-type' command.")
+  "Alias for `denote-type' command.")
 
 ;;;###autoload
 (defun denote-date ()
@@ -1859,7 +1859,7 @@ is set to \\='(date title keywords)."
 (call-interactively #'denote)))
 
 (defalias 'denote-create-note-using-date 'denote-date
-  "Alias of `denote-date' command.")
+  "Alias for `denote-date' command.")
 
 ;;;###autoload
 (defun denote-subdirectory ()
@@ -1876,7 +1876,7 @@ set to \\='(subdirectory title keywords)."
 (call-interactively #'denote)))
 
 (defalias 'denote-create-note-in-subdirectory 'denote-subdirectory
-  "Alias of `denote-subdirectory' command.")
+  "Alias for `denote-subdirectory' command.")
 
 ;;;###autoload
 (defun denote-template ()
@@ -1894,7 +1894,7 @@ set to \\='(template title keywords)."
 (call-interactively #'denote)))
 
 (defalias 'denote-create-note-with-template 'denote-template
-  "Alias of `denote-template' command.")
+  "Alias for `denote-template' command.")
 
 ;;;###autoload
 (defun denote-signature ()
@@ -1908,7 +1908,7 @@ is set to \\='(signature title keywords)."
 (call-interactively #'denote)))
 
 (defalias 'denote-create-note-using-signature 'denote-signature
-  "Alias of `denote-signature' command.")
+  "Alias for `denote-signature' command.")
 
 ; Other convenience commands
 



[elpa] externals/denote 58835d479b 1/3: Make minor edits to the description

2023-07-04 Thread ELPA Syncer
branch: externals/denote
commit 58835d479b2b9f09587cd42d31c06ce49795755f
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Make minor edits to the description
---
 README.org | 11 ++-
 denote.el  | 13 +++--
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/README.org b/README.org
index bf2462ba3f..8823dfbdcc 100644
--- a/README.org
+++ b/README.org
@@ -73,13 +73,14 @@ modify this GNU manual.”
 :END:
 
 Denote aims to be a simple-to-use, focused-in-scope, and effective
-note-taking tool for Emacs.
+note-taking and file-naming tool for Emacs.
 
-Denote is based on the idea that notes should follow a predictable and
+Denote is based on the idea that files should follow a predictable and
 descriptive file-naming scheme.  The file name must offer a clear
-indication of what the note is about, without reference to any other
-metadata.  Denote basically streamlines the creation of such files
-while providing facilities to link between them.
+indication of what the contents are about, without reference to any
+other metadata.  Denote basically streamlines the creation of such
+files or file names while providing facilities to link between them
+(where those files are editable).
 
 Denote's file-naming scheme is not limited to "notes".  It can be used
 for all types of file, including those that are not editable in Emacs,
diff --git a/denote.el b/denote.el
index 135089a74a..b2323b94c4 100644
--- a/denote.el
+++ b/denote.el
@@ -27,13 +27,14 @@
 ;;; Commentary:
 
 ;; Denote aims to be a simple-to-use, focused-in-scope, and effective
-;; note-taking tool for Emacs.
+;; note-taking and file-naming tool for Emacs.
 ;;
-;; Denote is based on the idea that notes should follow a predictable and
-;; descriptive file-naming scheme.  The file name must offer a clear
-;; indication of what the note is about, without reference to any other
-;; metadata.  Denote basically streamlines the creation of such files
-;; while providing facilities to link between them.
+;; Denote is based on the idea that files should follow a predictable
+;; and descriptive file-naming scheme.  The file name must offer a
+;; clear indication of what the contents are about, without reference
+;; to any other metadata.  Denote basically streamlines the creation
+;; of such files or file names while providing facilities to link
+;; between them (where those files are editable).
 ;;
 ;; Denote's file-naming scheme is not limited to "notes".  It can be used
 ;; for all types of file, including those that are not editable in Emacs,



[elpa] externals/jinx updated (6541afe26f -> 6b6a85daff)

2023-07-04 Thread ELPA Syncer
elpasync pushed a change to branch externals/jinx.

  from  6541afe26f jinx-exclude-regexps: Ignore hyphens used as bullet 
points (Fix #87)
   new  a06e599c87 jinx-next/previous: Add command-modes
   new  6b6a85daff jinx-languages: Ensure that jinx-mode is enabled


Summary of changes:
 jinx.el | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)



[elpa] externals/jinx a06e599c87 1/2: jinx-next/previous: Add command-modes

2023-07-04 Thread ELPA Syncer
branch: externals/jinx
commit a06e599c87f0f52ac8d6aa606feda8d304caf33b
Author: Daniel Mendler 
Commit: Daniel Mendler 

jinx-next/previous: Add command-modes
---
 jinx.el | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/jinx.el b/jinx.el
index 4c493be18c..b0e57f5cf2 100644
--- a/jinx.el
+++ b/jinx.el
@@ -871,7 +871,6 @@ If prefix argument ALL non-nil correct all misspellings."
 (delete-minibuffer-contents)
 (insert word)
 (exit-minibuffer)))
-(put #'jinx-correct-select 'completion-predicate #'ignore)
 
 (defun jinx-next (n)
   "Go to to Nth next misspelling."
@@ -941,5 +940,9 @@ If prefix argument ALL non-nil correct all misspellings."
  (apply #'derived-mode-p jinx-include-modes))
 (jinx-mode 1)))
 
+(put #'jinx-correct-select 'completion-predicate #'ignore)
+(put #'jinx-next 'command-modes '(jinx-mode))
+(put #'jinx-previous 'command-modes '(jinx-mode))
+
 (provide 'jinx)
 ;;; jinx.el ends here



[elpa] externals/jinx 6b6a85daff 2/2: jinx-languages: Ensure that jinx-mode is enabled

2023-07-04 Thread ELPA Syncer
branch: externals/jinx
commit 6b6a85daff5ba688e5061f5df078442ce8d0a1c9
Author: Daniel Mendler 
Commit: Daniel Mendler 

jinx-languages: Ensure that jinx-mode is enabled
---
 jinx.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/jinx.el b/jinx.el
index b0e57f5cf2..1b1f4ae7ca 100644
--- a/jinx.el
+++ b/jinx.el
@@ -811,6 +811,7 @@ With prefix argument GLOBAL change the languages globally."
(user-error "No languages selected"))
" "))
 current-prefix-arg))
+  (unless jinx-mode (jinx-mode 1))
   (cond
(global
 (kill-local-variable 'jinx-languages)



[elpa] externals/marginalia 5f20897822: Add help-echo to censored variable values

2023-07-04 Thread ELPA Syncer
branch: externals/marginalia
commit 5f20897822c16abc773d55d456503a50be0642e9
Author: Daniel Mendler 
Commit: Daniel Mendler 

Add help-echo to censored variable values
---
 marginalia.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/marginalia.el b/marginalia.el
index cd41cdf463..627ceb858f 100644
--- a/marginalia.el
+++ b/marginalia.el
@@ -623,7 +623,9 @@ keybinding since CAND includes it."
 thereis (if (symbolp r)
 (eq r sym)
   (string-match-p r name)
-(propertize "*" 'face 'marginalia-null))
+(propertize "*"
+'face 'marginalia-null
+'help-echo "Hidden due to `marginalia-censor-variables'"))
(t
 (let ((val (symbol-value sym)))
   (pcase val



[elpa] externals/corfu 7cb2d4500a 2/2: README update

2023-07-04 Thread ELPA Syncer
branch: externals/corfu
commit 7cb2d4500aa4ed553b3f33a0a69efb63da95f44e
Author: Daniel Mendler 
Commit: Daniel Mendler 

README update
---
 README.org | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.org b/README.org
index 4f701de62f..ae1a29e1f2 100644
--- a/README.org
+++ b/README.org
@@ -496,6 +496,10 @@ enhance your setup.
 - [[https://codeberg.org/akib/emacs-corfu-terminal][corfu-terminal]]: The 
corfu-terminal package provides an overlay-based display
   for Corfu, such that you can use Corfu in terminal Emacs.
 
+- 
[[https://code.bsdgeek.org/adam/corfu-candidate-overlay][corfu-candidate-overlay]]:
 Shows as-you-type auto-suggestion candidate overlay
+  with a visual indication of whether there are many or exactly one candidate
+  available (works only with =corfu-auto= disabled).
+
 - [[https://github.com/oantolin/orderless][Orderless]]: Corfu supports 
completion styles, including the advanced =orderless=
   completion style, where the filtering expressions are separated by spaces or
   another character (see ~corfu-separator~).
@@ -520,10 +524,6 @@ enhance your setup.
 - [[https://github.com/minad/vertico][Vertico]]: You may also want to look 
into my Vertico package. Vertico is the
   minibuffer completion counterpart of Corfu.
 
-- 
[[https://code.bsdgeek.org/adam/corfu-candidate-overlay][corfu-candidate-overlay]]:
 Shows as-you-type auto-suggestion candidate overlay
-  with a visual indication of whether there are many or exactly one candidate
-  available (works only with corfu-auto popup disabled).
-
 * Alternatives
 
 - [[https://github.com/company-mode/company-mode][Company]]: Company is a 
widely used and mature completion package, which



[elpa] externals/corfu updated (7353327e8b -> 7cb2d4500a)

2023-07-04 Thread ELPA Syncer
elpasync pushed a change to branch externals/corfu.

  from  7353327e8b corfu-quick: Fix display position if corfu--base/=""
   new  e65f75cf12 README: Add reference to corfu-candidate-overlay package 
(#331)
   new  7cb2d4500a README update


Summary of changes:
 README.org | 4 
 1 file changed, 4 insertions(+)



[elpa] externals/corfu e65f75cf12 1/2: README: Add reference to corfu-candidate-overlay package (#331)

2023-07-04 Thread ELPA Syncer
branch: externals/corfu
commit e65f75cf12ed89e7e1e6f88bda128eb47545c62e
Author: Adam Kruszewski 
Commit: GitHub 

README: Add reference to corfu-candidate-overlay package (#331)
---
 README.org | 4 
 1 file changed, 4 insertions(+)

diff --git a/README.org b/README.org
index 401d29090e..4f701de62f 100644
--- a/README.org
+++ b/README.org
@@ -520,6 +520,10 @@ enhance your setup.
 - [[https://github.com/minad/vertico][Vertico]]: You may also want to look 
into my Vertico package. Vertico is the
   minibuffer completion counterpart of Corfu.
 
+- 
[[https://code.bsdgeek.org/adam/corfu-candidate-overlay][corfu-candidate-overlay]]:
 Shows as-you-type auto-suggestion candidate overlay
+  with a visual indication of whether there are many or exactly one candidate
+  available (works only with corfu-auto popup disabled).
+
 * Alternatives
 
 - [[https://github.com/company-mode/company-mode][Company]]: Company is a 
widely used and mature completion package, which



[elpa] externals/modus-themes 960571c1ec: Add support for erts-mode

2023-07-04 Thread ELPA Syncer
branch: externals/modus-themes
commit 960571c1ecf71febfaa8ea82ba82db8b7188a08e
Author: Protesilaos Stavrou 
Commit: Protesilaos Stavrou 

Add support for erts-mode

Thanks to Kevin Fleming for informing me about this built-in mode.
This was done in issue 85 on the GitHub mirror:
.
---
 doc/modus-themes.info | 83 ++-
 doc/modus-themes.org  |  1 +
 modus-themes.el   |  5 
 3 files changed, 48 insertions(+), 41 deletions(-)

diff --git a/doc/modus-themes.info b/doc/modus-themes.info
index 67fb3c8aba..eb23f3c506 100644
--- a/doc/modus-themes.info
+++ b/doc/modus-themes.info
@@ -4000,6 +4000,7 @@ have lots of extensions, so the “full support” may not be 
100% true…
• epa
• erc
• ert
+   • erts-mode [Part of 4.3.0-dev.]
• eshell
• eshell-fringe-status
• evil* (evil-mode)
@@ -6223,47 +6224,47 @@ Node: Custom hl-todo colors160552
 Node: Add support for solaire-mode162090
 Node: Face coverage165001
 Node: Supported packages165453
-Node: Indirectly covered packages170957
-Node: Notes on individual packages172326
-Node: Note on calendarel weekday and weekend colors173426
-Node: Note on git-gutter in Doom Emacs174574
-Node: Note on php-mode multiline comments176915
-Node: Note on underlines in compilation buffers177668
-Node: Note on inline Latex in Org buffers178505
-Node: Note on dimmerel179115
-Node: Note on display-fill-column-indicator-mode180600
-Node: Note on highlight-parenthesesel181999
-Node: Note on mmm-modeel background colors187977
-Node: Note for prism190277
-Node: Note on company-mode overlay pop-up193445
-Ref: Note on company-mode overlay pop-up-Footnote-1194175
-Ref: Note on company-mode overlay pop-up-Footnote-2194242
-Node: Note on ERC escaped color sequences194297
-Ref: Note on ERC escaped color sequences-Footnote-1195725
-Node: Note on powerline or spaceline195835
-Node: Note on SHR colors196249
-Node: Note on SHR fonts196673
-Node: Note on Ement colors and fonts197318
-Node: Note on pdf-tools link hints198828
-Node: Note on the Notmuch logo201288
-Node: Note on goto-address-mode faces201826
-Node: Frequently Asked Questions202944
-Node: Is the contrast ratio about adjacent colors?203575
-Node: What does it mean to avoid exaggerations?205082
-Node: Why are colors mostly variants of blue magenta cyan?206932
-Node: What is the best setup for legibility?211238
-Node: Are these color schemes?213883
-Node: Port the Modus themes to other platforms?217565
-Node: Contributing220409
-Node: Sources of the themes220806
-Node: Issues you can help with221700
-Node: Patches require copyright assignment to the FSF223091
-Node: Acknowledgements225311
-Node: GNU Free Documentation License229405
-Node: Indices254769
-Node: Function index254948
-Node: Variable index256131
-Node: Concept index258587
+Node: Indirectly covered packages170995
+Node: Notes on individual packages172364
+Node: Note on calendarel weekday and weekend colors173464
+Node: Note on git-gutter in Doom Emacs174612
+Node: Note on php-mode multiline comments176953
+Node: Note on underlines in compilation buffers177706
+Node: Note on inline Latex in Org buffers178543
+Node: Note on dimmerel179153
+Node: Note on display-fill-column-indicator-mode180638
+Node: Note on highlight-parenthesesel182037
+Node: Note on mmm-modeel background colors188015
+Node: Note for prism190315
+Node: Note on company-mode overlay pop-up193483
+Ref: Note on company-mode overlay pop-up-Footnote-1194213
+Ref: Note on company-mode overlay pop-up-Footnote-2194280
+Node: Note on ERC escaped color sequences194335
+Ref: Note on ERC escaped color sequences-Footnote-1195763
+Node: Note on powerline or spaceline195873
+Node: Note on SHR colors196287
+Node: Note on SHR fonts196711
+Node: Note on Ement colors and fonts197356
+Node: Note on pdf-tools link hints198866
+Node: Note on the Notmuch logo201326
+Node: Note on goto-address-mode faces201864
+Node: Frequently Asked Questions202982
+Node: Is the contrast ratio about adjacent colors?203613
+Node: What does it mean to avoid exaggerations?205120
+Node: Why are colors mostly variants of blue magenta cyan?206970
+Node: What is the best setup for legibility?211276
+Node: Are these color schemes?213921
+Node: Port the Modus themes to other platforms?217603
+Node: Contributing220447
+Node: Sources of the themes220844
+Node: Issues you can help with221738
+Node: Patches require copyright assignment to the FSF223129
+Node: Acknowledgements225349
+Node: GNU Free Documentation License229443
+Node: Indices254807
+Node: Function index254986
+Node: Variable index256169
+Node: Concept index258625
 
 End Tag Table
 
diff --git a/doc/modus-themes.org b/doc/modus-themes.org
index 9fcefd1e90..cd2e50aecc 100644
--- a/doc/modus-themes.org
+++ b/doc/modus-themes.org
@@ -3911,6 +3911,7 @@ have lots of extensions, so 

[elpa] externals/cape 75285d6e31: No messages from cape-dict

2023-07-04 Thread ELPA Syncer
branch: externals/cape
commit 75285d6e311a473a0e5ee94f71913ee23678d68f
Author: Daniel Mendler 
Commit: Daniel Mendler 

No messages from cape-dict
---
 cape.el | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/cape.el b/cape.el
index 3923a5e027..a2002b7cdb 100644
--- a/cape.el
+++ b/cape.el
@@ -519,10 +519,12 @@ See the user options `cape-dabbrev-min-length' and
 (cape--case-replace-list
  cape-dict-case-replace input
  (if cape-dict-grep
- (apply #'process-lines-ignore-status
-"grep"
-(concat "-Fh" (and (cape--case-fold-p cape-dict-case-fold) 
"i"))
-input (cape--dict-file))
+ (let ((inhibit-message t)
+   (message-log-max nil))
+   (apply #'process-lines-ignore-status
+  "grep"
+  (concat "-Fh" (and (cape--case-fold-p cape-dict-case-fold) 
"i"))
+  input (cape--dict-file)))
(unless cape--dict-all-words
  (setq cape--dict-all-words
(split-string (with-temp-buffer