update packages

This commit is contained in:
2021-01-08 19:32:30 +01:00
parent ce8f24d28a
commit f5649dceab
467 changed files with 26642 additions and 22487 deletions

View File

@@ -5,9 +5,9 @@
;; Author: Justin Burkett <justin@burkett.cc>
;; Maintainer: Justin Burkett <justin@burkett.cc>
;; URL: https://github.com/justbur/emacs-which-key
;; Package-Version: 20200702.219
;; Package-Commit: 8f2427a69bc0388ddfb14a10eaf71e589f3b0913
;; Version: 3.3.2
;; Package-Version: 20201216.1720
;; Package-Commit: 428aedfce0157920814fbb2ae5d00b4aea89df88
;; Version: 3.5.0
;; Keywords:
;; Package-Requires: ((emacs "24.4"))
@@ -679,12 +679,12 @@ update.")
(defvar which-key--ignore-non-evil-keys-regexp
(eval-when-compile
(regexp-opt '("mouse-" "wheel-" "remap" "drag-" "scroll-bar"
"select-window" "switch-frame" "which-key-"))))
"select-window" "switch-frame" "which-key"))))
(defvar which-key--ignore-keys-regexp
(eval-when-compile
(regexp-opt '("mouse-" "wheel-" "remap" "drag-" "scroll-bar"
"select-window" "switch-frame" "-state"
"which-key-"))))
"which-key"))))
(make-obsolete-variable 'which-key-prefix-name-alist nil "2016-10-05")
(make-obsolete-variable 'which-key-prefix-title-alist nil "2016-10-05")
@@ -817,8 +817,6 @@ problems at github. If DISABLE is non-nil disable support."
(when which-key-show-remaining-keys
(add-hook 'pre-command-hook #'which-key--lighter-restore))
(add-hook 'pre-command-hook #'which-key--hide-popup)
(add-hook 'focus-out-hook #'which-key--stop-timer)
(add-hook 'focus-in-hook #'which-key--start-timer)
(add-hook 'window-size-change-functions
'which-key--hide-popup-on-frame-size-change)
(which-key--start-timer))
@@ -828,8 +826,6 @@ problems at github. If DISABLE is non-nil disable support."
(when which-key-show-remaining-keys
(remove-hook 'pre-command-hook #'which-key--lighter-restore))
(remove-hook 'pre-command-hook #'which-key--hide-popup)
(remove-hook 'focus-out-hook #'which-key--stop-timer)
(remove-hook 'focus-in-hook #'which-key--start-timer)
(remove-hook 'window-size-change-functions
'which-key--hide-popup-on-frame-size-change)
(which-key--stop-timer)))
@@ -914,6 +910,41 @@ but more functional."
;;; Helper functions to modify replacement lists.
;;;###autoload
(defun which-key-add-keymap-based-replacements (keymap key replacement &rest more)
"Replace the description of KEY using REPLACEMENT in KEYMAP.
KEY should take a format suitable for use in
`kbd'. REPLACEMENT is the string to use to describe the
command associated with KEY in the KEYMAP. You may also use a
cons cell of the form \(STRING . COMMAND\) for each REPLACEMENT,
where STRING is the replacement string and COMMAND is a symbol
corresponding to the intended command to be replaced. In the
latter case, which-key will verify the intended command before
performing the replacement. COMMAND should be nil if the binding
corresponds to a key prefix. For example,
\(which-key-add-keymap-based-replacements global-map
\"C-x w\" \"Save as\"\)
and
\(which-key-add-keymap-based-replacements global-map
\"C-x w\" '\(\"Save as\" . write-file\)\)
both have the same effect for the \"C-x C-w\" key binding, but
the latter causes which-key to verify that the key sequence is
actually bound to write-file before performing the replacement."
(while key
(let ((string (if (stringp replacement)
replacement
(car-safe replacement)))
(command (cdr-safe replacement)))
(define-key keymap (which-key--pseudo-key (kbd key))
`(which-key ,(cons string command))))
(setq key (pop more)
replacement (pop more))))
(put 'which-key-add-keymap-based-replacements 'lisp-indent-function 'defun)
;;;###autoload
(defun which-key-add-key-based-replacements
(key-sequence replacement &rest more)
@@ -1464,53 +1495,74 @@ local bindings coming first. Within these categories order using
(cdr key-binding)))))))
(defun which-key--get-pseudo-binding (key-binding &optional prefix)
(let* ((pseudo-binding
(key-binding (which-key--pseudo-key (kbd (car key-binding)) prefix)))
(pseudo-binding (when pseudo-binding (cadr pseudo-binding)))
(pseudo-desc (when pseudo-binding (car pseudo-binding)))
(pseudo-def (when pseudo-binding (cdr pseudo-binding)))
(real-def (key-binding (kbd (car key-binding))))
;; treat keymaps as if they're nil bindings. This creates the
;; possibility that we rename the wrong binding but this seems
;; unlikely.
(real-def (unless (keymapp real-def) real-def)))
(when (and pseudo-binding
(eq pseudo-def real-def))
(cons (car key-binding) pseudo-desc))))
(let* ((key (kbd (car key-binding)))
(pseudo-binding (key-binding (which-key--pseudo-key key prefix))))
(when pseudo-binding
(let* ((command-replacement (cadr pseudo-binding))
(pseudo-desc (car command-replacement))
(pseudo-def (cdr command-replacement)))
(when (and (stringp pseudo-desc)
(or (null pseudo-def)
;; don't verify keymaps
(keymapp pseudo-def)
(eq pseudo-def (key-binding key))))
(cons (car key-binding) pseudo-desc))))))
(defsubst which-key--replace-in-binding (key-binding repl)
(cond ((or (not (consp repl)) (null (cdr repl)))
key-binding)
((functionp (cdr repl))
(funcall (cdr repl) key-binding))
((consp (cdr repl))
(cons
(cond ((and (caar repl) (cadr repl))
(replace-regexp-in-string
(caar repl) (cadr repl) (car key-binding) t))
((cadr repl) (cadr repl))
(t (car key-binding)))
(cond ((and (cdar repl) (cddr repl))
(replace-regexp-in-string
(cdar repl) (cddr repl) (cdr key-binding) t))
((cddr repl) (cddr repl))
(t (cdr key-binding)))))))
(defun which-key--replace-in-repl-list-once (key-binding repls)
(cl-dolist (repl repls)
(when (which-key--match-replacement key-binding repl)
(cl-return `(replaced . ,(which-key--replace-in-binding key-binding repl))))))
(defun which-key--replace-in-repl-list-many (key-binding repls)
(let (found)
(dolist (repl repls)
(when (which-key--match-replacement key-binding repl)
(setq found 't)
(setq key-binding (which-key--replace-in-binding key-binding repl))))
(when found `(replaced . ,key-binding))))
(defun which-key--maybe-replace (key-binding &optional prefix)
"Use `which-key--replacement-alist' to maybe replace KEY-BINDING.
KEY-BINDING is a cons cell of the form \(KEY . BINDING\) each of
which are strings. KEY is of the form produced by `key-binding'."
(let* ((pseudo-binding (which-key--get-pseudo-binding key-binding prefix))
one-match)
(let* ((pseudo-binding (which-key--get-pseudo-binding key-binding prefix)))
(if pseudo-binding
pseudo-binding
(let* ((all-repls
(append (cdr-safe (assq major-mode which-key-replacement-alist))
which-key-replacement-alist)))
(dolist (repl all-repls key-binding)
(when (and (or which-key-allow-multiple-replacements
(not one-match))
(which-key--match-replacement key-binding repl))
(setq one-match t)
(setq key-binding
(cond ((or (not (consp repl)) (null (cdr repl)))
key-binding)
((functionp (cdr repl))
(funcall (cdr repl) key-binding))
((consp (cdr repl))
(cons
(cond ((and (caar repl) (cadr repl))
(replace-regexp-in-string
(caar repl) (cadr repl) (car key-binding) t))
((cadr repl) (cadr repl))
(t (car key-binding)))
(cond ((and (cdar repl) (cddr repl))
(replace-regexp-in-string
(cdar repl) (cddr repl) (cdr key-binding) t))
((cddr repl) (cddr repl))
(t (cdr key-binding)))))))))))))
(let* ((replacer (if which-key-allow-multiple-replacements
#'which-key--replace-in-repl-list-many
#'which-key--replace-in-repl-list-once)))
(pcase
(apply replacer
(list key-binding
(cdr-safe (assq major-mode which-key-replacement-alist))))
(`(replaced . ,repl)
(if which-key-allow-multiple-replacements
(pcase (apply replacer (list repl which-key-replacement-alist))
(`(replaced . ,repl) repl)
('() repl))
repl))
('()
(pcase (apply replacer (list key-binding which-key-replacement-alist))
(`(replaced . ,repl) repl)
('() key-binding))))))))
(defsubst which-key--current-key-list (&optional key-str)
(append (listify-key-sequence (which-key--current-prefix))
@@ -1545,11 +1597,8 @@ which are strings. KEY is of the form produced by `key-binding'."
(defun which-key--pseudo-key (key &optional prefix)
"Replace the last key in the sequence KEY by a special symbol
in order for which-key to allow looking up a description for the key."
(let* ((seq (listify-key-sequence key))
(final (intern (format "which-key-%s" (key-description (last seq))))))
(if prefix
(vconcat prefix (list final))
(vconcat (butlast seq) (list final)))))
(let ((seq (listify-key-sequence key)))
(vconcat (or prefix (butlast seq)) [which-key] (last seq))))
(defun which-key--maybe-get-prefix-title (keys)
"KEYS is a string produced by `key-description'.
@@ -2075,7 +2124,10 @@ max-lines max-width avl-lines avl-width (which-key--pages-height result))
(key (if paging-key-bound
(concat key " or " which-key-paging-key)
key)))
(when which-key-use-C-h-commands
(when (and which-key-use-C-h-commands
(or (not (stringp (kbd prefix-keys)))
(not (string-equal (char-to-string help-char)
(kbd prefix-keys)))))
(which-key--propertize (format "[%s paging/help]" key)
'face 'which-key-note-face))))