Package: emacs;
Reported by: StrawberryTea <look <at> strawberrytea.xyz>
Date: Fri, 28 Mar 2025 00:41:01 UTC
Severity: normal
Found in version 31.0.50
To reply to this bug, email your comments to 77324 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
View this report as an mbox folder, status mbox, maintainer mbox
bug-gnu-emacs <at> gnu.org
:bug#77324
; Package emacs
.
(Fri, 28 Mar 2025 00:41:01 GMT) Full text and rfc822 format available.StrawberryTea <look <at> strawberrytea.xyz>
:bug-gnu-emacs <at> gnu.org
.
(Fri, 28 Mar 2025 00:41:01 GMT) Full text and rfc822 format available.Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: StrawberryTea <look <at> strawberrytea.xyz> To: bug-gnu-emacs <at> gnu.org Subject: 31.0.50; bind-chord uses internal representation of key-chord instead of key-chord-define Date: Thu, 27 Mar 2025 20:40:11 -0400
[Message part 1 (text/plain, inline)]
Let me know if I sent this patch correctly. But basically, I am making a major update to key-chord and need bind-chord to use key-chord-define instead of hacking the internal representation of a key-chord. https://github.com/emacsorphanage/key-chord/pull/12 Sincerely, StrawberryTea/LemonBreezes
[0001-fix-Update-bind-chord-to-use-key-chord-define.patch (text/x-patch, inline)]
From 2ea21cd51de9c6c771787d06e4b3eb90e01b65e8 Mon Sep 17 00:00:00 2001 From: StrawberryTea <look <at> strawberrytea.xyz> Date: Thu, 27 Mar 2025 19:56:13 -0400 Subject: [PATCH] fix: Update bind-chord to use key-chord-define --- bind-chord.el | 16 ++++++++++------ use-package-chords.el | 4 ++-- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/bind-chord.el b/bind-chord.el index ed736a4..af1dcc8 100644 --- a/bind-chord.el +++ b/bind-chord.el @@ -5,7 +5,7 @@ ;; Author: Justin Talbott <justin <at> waymondo.com> ;; Keywords: convenience, tools, extensions ;; URL: https://github.com/jwiegley/use-package -;; Version: 0.2.1 +;; Version: 0.2.2 ;; Package-Requires: ((emacs "24.3") (bind-key "1.0") (key-chord "0.6")) ;; Filename: bind-chord.el @@ -28,17 +28,21 @@ (require 'bind-key) (require 'key-chord nil t) +(declare-function key-chord-define "key-chord" (keymap keys command)) ;;;###autoload (defmacro bind-chord (chord command &optional keymap) "Bind CHORD to COMMAND in KEYMAP (`global-map' if not passed)." (let ((key1 (logand 255 (aref chord 0))) (key2 (logand 255 (aref chord 1)))) - (if (eq key1 key2) - `(bind-key (vector 'key-chord ,key1 ,key2) ,command ,keymap) - `(progn - (bind-key (vector 'key-chord ,key1 ,key2) ,command ,keymap) - (bind-key (vector 'key-chord ,key2 ,key1) ,command ,keymap))))) + `(progn + ;; Use key-chord's built-in define function to properly register keys + (key-chord-define ,(if keymap keymap 'global-map) + ,(cond + ((stringp chord) chord) + ((vectorp chord) chord) + (t `(string ,key1 ,key2))) + ,command)))) (defun bind-chords-form (args keymap) "Bind multiple chords at once. diff --git a/use-package-chords.el b/use-package-chords.el index 479083b..a5b0393 100644 --- a/use-package-chords.el +++ b/use-package-chords.el @@ -5,8 +5,8 @@ ;; Author: Justin Talbott <justin <at> waymondo.com> ;; Keywords: convenience, tools, extensions ;; URL: https://github.com/jwiegley/use-package -;; Version: 0.2.1 -;; Package-Requires: ((use-package "2.1") (bind-key "1.0") (bind-chord "0.2") (key-chord "0.6")) +;; Version: 0.2.2 +;; Package-Requires: ((use-package "2.1") (bind-key "1.0") (bind-chord "0.2.2") (key-chord "0.6")) ;; Filename: use-package-chords.el ;; This program is free software; you can redistribute it and/or modify -- 2.49.0
[Message part 3 (text/plain, inline)]
In GNU Emacs 31.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.18.4) of 2025-03-24 built on localhost Repository revision: e02912fff3a0668d144eb6a2b122588519dbe0df Repository branch: feature/igc Windowing system distributor 'The X.Org Foundation', version 11.0.12101016 System Description: Gentoo Linux Configured using: 'configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-silent-rules --docdir=/usr/share/doc/emacs-31.0.9999 --htmldir=/usr/share/doc/emacs-31.0.9999/html --libdir=/usr/lib64 --program-suffix=-emacs-31-vcs --includedir=/usr/include/emacs-31-vcs --infodir=/usr/share/info/emacs-31-vcs --localstatedir=/var --enable-locallisppath=/etc/emacs:/usr/share/emacs/site-lisp --without-compress-install --without-hesiod --without-pop --with-file-notification=inotify --with-pdumper --with-mps=yes --disable-gc-mark-trace --enable-acl --enable-xattr --with-dbus --with-modules --with-gameuser=:gamestat --with-libgmp --with-gpm --with-native-compilation=aot --without-kerberos --without-kerberos5 --with-lcms2 --with-xml2 --with-mailutils --without-selinux --with-sqlite3 --with-gnutls --with-libsystemd --with-threads --with-tree-sitter --without-wide-int --with-sound=no --with-zlib --with-x --without-pgtk --without-ns --without-gconf --without-gsettings --without-toolkit-scroll-bars --with-xpm --with-xft --with-cairo --with-harfbuzz --with-libotf --with-m17n-flt --with-x-toolkit=lucid --with-xaw3d --with-gif --with-jpeg --with-png --with-rsvg --with-tiff --with-webp --with-imagemagick --with-dumping=pdumper 'CFLAGS=-DFD_SETSIZE=10000 -DDARWIN_UNLIMITED_SELECT -march=native -O3 -pipe -fno-lto -Wno-error=odr -Wno-error=lto-type-mismatch -Wno-error=strict-aliasing -fgraphite-identity -floop-nest-optimize -fdevirtualize-at-ltrans -fipa-pta -fno-semantic-interposition ' 'LDFLAGS=-Wl,--as-needed -Wl,-Ofast -Wl,--sort-common'' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM HARFBUZZ IMAGEMAGICK JPEG LCMS2 LIBOTF LIBSYSTEMD LIBXML2 M17N_FLT MODULES MPS NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SQLITE3 THREADS TIFF TREE_SITTER WEBP X11 XAW3D XDBE XIM XINERAMA XINPUT2 XPM XRANDR LUCID ZLIB Important settings: value of $LANG: C.utf8 locale-coding-system: utf-8-unix Major mode: Diff Minor modes in effect: isearch-mb-mode: t dirvish-override-dired-mode: t global-anzu-mode: t anzu-mode: t pomm-mode-line-mode: t diff-hl-flydiff-mode: t delete-selection-mode: t pdf-occur-global-minor-mode: t parrot-mode: t lsp-treemacs-sync-mode: t treemacs-filewatch-mode: t treemacs-git-mode: t treemacs-fringe-indicator-mode: t emms-mode-line-cycle: t emms-playing-time-display-mode: t emms-playing-time-mode: t emms-mode-line-mode: t mu4e-modeline-mode: t eshell-atuin-mode: t eat-eshell-visual-command-mode: t eat-eshell-mode: t org-roam-db-autosync-mode: t magit-gptcommit-mode: t yas-global-mode: t yas-minor-mode: t override-global-mode: t compile-angel-on-load-mode: t evil-owl-mode: t beacon-mode: t projectile-mode: t whitespace-mode: t eros-mode: t recentf-mode: t save-place-mode: t global-so-long-mode: t global-diff-hl-mode: t diff-hl-mode: t envrc-global-mode: t envrc-mode: t evil-collection-diff-mode: t global-git-commit-mode: t vimish-fold-global-mode: t vimish-fold-mode: t which-key-mode: t savehist-mode: t better-jumper-mode: t better-jumper-local-mode: t vertico-multiform-mode: t vertico-mouse-mode: t vertico-mode: t nerd-icons-completion-mode: t marginalia-mode: t corfu-history-mode: t corfu-popupinfo-mode: t global-corfu-mode: t corfu-mode: t evil-goggles-mode: t key-chord-mode: t evil-snipe-override-mode: t evil-snipe-mode: t evil-snipe-override-local-mode: t evil-snipe-local-mode: t restore-point-mode: t beginend-global-mode: t repeat-mode: t ednc-mode: t server-mode: t gcmh-mode: t winner-mode: t smartparens-global-mode: t undo-fu-session-global-mode: t undo-fu-session-mode: t undo-fu-mode: t global-flycheck-mode: t ws-butler-global-mode: t editorconfig-mode: t global-yank-indent-mode: t persp-mode: t doom-modeline-mode: t minions-mode: t winum-mode: t comint-histories-mode: t persistent-scratch-autosave-mode: t dtrt-indent-mode: t evil-mode: t evil-local-mode: t +popup-mode: t general-override-mode: t global-eldoc-mode: t eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t window-divider-mode: t undelete-frame-mode: t minibuffer-regexp-mode: t size-indication-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t abbrev-mode: t Load-path shadows: /home/st/.config/emacs/.local/straight/build-31.0.50/ef-themes/theme-loaddefs hides /home/st/.config/emacs/.local/straight/build-31.0.50/standard-themes/theme-loaddefs /home/st/.config/emacs/.local/straight/build-31.0.50/ef-themes/theme-loaddefs hides /home/st/.config/emacs/.local/straight/build-31.0.50/modus-themes/theme-loaddefs /tmp/use-package-chords-JvQ7R8/key-chord-20240910.1441/key-chord hides /home/st/.config/emacs/.local/straight/build-31.0.50/key-chord/key-chord /tmp/use-package-chords-JvQ7R8/key-chord-20240910.1441/key-chord-autoloads hides /home/st/.config/emacs/.local/straight/build-31.0.50/key-chord/key-chord-autoloads /home/st/.config/emacs/.local/straight/build-31.0.50/straight/straight hides /home/st/.config/emacs/.local/straight/repos/straight.el/straight /home/st/.config/emacs/.local/straight/build-31.0.50/straight/straight-x hides /home/st/.config/emacs/.local/straight/repos/straight.el/straight-x /home/st/.config/emacs/.local/straight/build-31.0.50/straight/straight-ert-print-hack hides /home/st/.config/emacs/.local/straight/repos/straight.el/straight-ert-print-hack /home/st/.config/emacs/.local/straight/build-31.0.50/cmake-mode/cmake-mode hides /usr/share/emacs/site-lisp/cmake-mode /home/st/.config/emacs/.local/straight/build-31.0.50/dash/dash hides /usr/share/emacs/site-lisp/dash/dash /home/st/.config/emacs/.local/straight/build-31.0.50/epl/epl hides /usr/share/emacs/site-lisp/epl/epl /home/st/.config/emacs/.local/straight/build-31.0.50/f/f-shortdoc hides /usr/share/emacs/site-lisp/f/f-shortdoc /home/st/.config/emacs/.local/straight/build-31.0.50/f/f hides /usr/share/emacs/site-lisp/f/f /usr/share/emacs/site-lisp/ratpoison hides /usr/share/emacs/site-lisp/ratpoison/ratpoison /home/st/.config/emacs/.local/straight/build-31.0.50/s/s hides /usr/share/emacs/site-lisp/s/s /home/st/.config/emacs/.local/straight/build-31.0.50/shut-up/shut-up hides /usr/share/emacs/site-lisp/shut-up/shut-up /home/st/.config/emacs/.local/straight/build-31.0.50/transient/transient hides /usr/share/emacs/31.0.50/lisp/transient /home/st/.config/emacs/.local/straight/build-31.0.50/bind-key/bind-key hides /usr/share/emacs/31.0.50/lisp/bind-key /home/st/.config/emacs/.local/straight/build-31.0.50/editorconfig/editorconfig hides /usr/share/emacs/31.0.50/lisp/editorconfig /home/st/.config/emacs/.local/straight/build-31.0.50/jsonrpc/jsonrpc hides /usr/share/emacs/31.0.50/lisp/jsonrpc /home/st/.config/emacs/.local/straight/build-31.0.50/editorconfig/editorconfig-conf-mode hides /usr/share/emacs/31.0.50/lisp/editorconfig-conf-mode /home/st/.config/emacs/.local/straight/build-31.0.50/editorconfig/editorconfig-core-handle hides /usr/share/emacs/31.0.50/lisp/editorconfig-core-handle /home/st/.config/emacs/.local/straight/build-31.0.50/editorconfig/editorconfig-core hides /usr/share/emacs/31.0.50/lisp/editorconfig-core /home/st/.config/emacs/.local/straight/build-31.0.50/editorconfig/editorconfig-fnmatch hides /usr/share/emacs/31.0.50/lisp/editorconfig-fnmatch /home/st/.config/emacs/.local/straight/build-31.0.50/editorconfig/editorconfig-tools hides /usr/share/emacs/31.0.50/lisp/editorconfig-tools /home/st/.config/emacs/.local/straight/repos/straight.el/indent hides /usr/share/emacs/31.0.50/lisp/indent /home/st/.config/emacs/.local/straight/build-31.0.50/ef-themes/theme-loaddefs hides /usr/share/emacs/31.0.50/lisp/theme-loaddefs /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-bind-key hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-bind-key /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-core hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-core /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-delight hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-delight /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-diminish hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-diminish /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-ensure-system-package hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-ensure-system-package /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-ensure hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-ensure /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-jump hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-jump /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package-lint hides /usr/share/emacs/31.0.50/lisp/use-package/use-package-lint /home/st/.config/emacs/.local/straight/build-31.0.50/use-package/use-package hides /usr/share/emacs/31.0.50/lisp/use-package/use-package /home/st/.config/emacs/.local/straight/build-31.0.50/project/project hides /usr/share/emacs/31.0.50/lisp/progmodes/project /home/st/.config/emacs/.local/straight/build-31.0.50/xref/xref hides /usr/share/emacs/31.0.50/lisp/progmodes/xref /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-src hides /usr/share/emacs/31.0.50/lisp/org/org-src /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-table hides /usr/share/emacs/31.0.50/lisp/org/org-table /home/st/.config/emacs/.local/straight/build-31.0.50/org/org hides /usr/share/emacs/31.0.50/lisp/org/org /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-list hides /usr/share/emacs/31.0.50/lisp/org/org-list /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-exp hides /usr/share/emacs/31.0.50/lisp/org/ob-exp /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-capture hides /usr/share/emacs/31.0.50/lisp/org/org-capture /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-publish hides /usr/share/emacs/31.0.50/lisp/org/ox-publish /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox hides /usr/share/emacs/31.0.50/lisp/org/ox /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-lint hides /usr/share/emacs/31.0.50/lisp/org/org-lint /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-C hides /usr/share/emacs/31.0.50/lisp/org/ob-C /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-R hides /usr/share/emacs/31.0.50/lisp/org/ob-R /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-awk hides /usr/share/emacs/31.0.50/lisp/org/ob-awk /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-calc hides /usr/share/emacs/31.0.50/lisp/org/ob-calc /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-clojure hides /usr/share/emacs/31.0.50/lisp/org/ob-clojure /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-comint hides /usr/share/emacs/31.0.50/lisp/org/ob-comint /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-core hides /usr/share/emacs/31.0.50/lisp/org/ob-core /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-css hides /usr/share/emacs/31.0.50/lisp/org/ob-css /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-ditaa hides /usr/share/emacs/31.0.50/lisp/org/ob-ditaa /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-dot hides /usr/share/emacs/31.0.50/lisp/org/ob-dot /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-emacs-lisp hides /usr/share/emacs/31.0.50/lisp/org/ob-emacs-lisp /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-eshell hides /usr/share/emacs/31.0.50/lisp/org/ob-eshell /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-eval hides /usr/share/emacs/31.0.50/lisp/org/ob-eval /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-forth hides /usr/share/emacs/31.0.50/lisp/org/ob-forth /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-fortran hides /usr/share/emacs/31.0.50/lisp/org/ob-fortran /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-gnuplot hides /usr/share/emacs/31.0.50/lisp/org/ob-gnuplot /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-groovy hides /usr/share/emacs/31.0.50/lisp/org/ob-groovy /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-haskell hides /usr/share/emacs/31.0.50/lisp/org/ob-haskell /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-java hides /usr/share/emacs/31.0.50/lisp/org/ob-java /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-js hides /usr/share/emacs/31.0.50/lisp/org/ob-js /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-julia hides /usr/share/emacs/31.0.50/lisp/org/ob-julia /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-latex hides /usr/share/emacs/31.0.50/lisp/org/ob-latex /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-lilypond hides /usr/share/emacs/31.0.50/lisp/org/ob-lilypond /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-lisp hides /usr/share/emacs/31.0.50/lisp/org/ob-lisp /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-lob hides /usr/share/emacs/31.0.50/lisp/org/ob-lob /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-lua hides /usr/share/emacs/31.0.50/lisp/org/ob-lua /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-makefile hides /usr/share/emacs/31.0.50/lisp/org/ob-makefile /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-matlab hides /usr/share/emacs/31.0.50/lisp/org/ob-matlab /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-maxima hides /usr/share/emacs/31.0.50/lisp/org/ob-maxima /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-ocaml hides /usr/share/emacs/31.0.50/lisp/org/ob-ocaml /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-octave hides /usr/share/emacs/31.0.50/lisp/org/ob-octave /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-org hides /usr/share/emacs/31.0.50/lisp/org/ob-org /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-perl hides /usr/share/emacs/31.0.50/lisp/org/ob-perl /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-plantuml hides /usr/share/emacs/31.0.50/lisp/org/ob-plantuml /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-processing hides /usr/share/emacs/31.0.50/lisp/org/ob-processing /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-python hides /usr/share/emacs/31.0.50/lisp/org/ob-python /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-ref hides /usr/share/emacs/31.0.50/lisp/org/ob-ref /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-ruby hides /usr/share/emacs/31.0.50/lisp/org/ob-ruby /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-sass hides /usr/share/emacs/31.0.50/lisp/org/ob-sass /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-scheme hides /usr/share/emacs/31.0.50/lisp/org/ob-scheme /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-screen hides /usr/share/emacs/31.0.50/lisp/org/ob-screen /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-sed hides /usr/share/emacs/31.0.50/lisp/org/ob-sed /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-shell hides /usr/share/emacs/31.0.50/lisp/org/ob-shell /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-sql hides /usr/share/emacs/31.0.50/lisp/org/ob-sql /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-sqlite hides /usr/share/emacs/31.0.50/lisp/org/ob-sqlite /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-table hides /usr/share/emacs/31.0.50/lisp/org/ob-table /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob-tangle hides /usr/share/emacs/31.0.50/lisp/org/ob-tangle /home/st/.config/emacs/.local/straight/build-31.0.50/org/ob hides /usr/share/emacs/31.0.50/lisp/org/ob /home/st/.config/emacs/.local/straight/build-31.0.50/org/oc-basic hides /usr/share/emacs/31.0.50/lisp/org/oc-basic /home/st/.config/emacs/.local/straight/build-31.0.50/org/oc-biblatex hides /usr/share/emacs/31.0.50/lisp/org/oc-biblatex /home/st/.config/emacs/.local/straight/build-31.0.50/org/oc-bibtex hides /usr/share/emacs/31.0.50/lisp/org/oc-bibtex /home/st/.config/emacs/.local/straight/build-31.0.50/org/oc-csl hides /usr/share/emacs/31.0.50/lisp/org/oc-csl /home/st/.config/emacs/.local/straight/build-31.0.50/org/oc-natbib hides /usr/share/emacs/31.0.50/lisp/org/oc-natbib /home/st/.config/emacs/.local/straight/build-31.0.50/org/oc hides /usr/share/emacs/31.0.50/lisp/org/oc /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-bbdb hides /usr/share/emacs/31.0.50/lisp/org/ol-bbdb /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-bibtex hides /usr/share/emacs/31.0.50/lisp/org/ol-bibtex /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-docview hides /usr/share/emacs/31.0.50/lisp/org/ol-docview /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-doi hides /usr/share/emacs/31.0.50/lisp/org/ol-doi /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-eshell hides /usr/share/emacs/31.0.50/lisp/org/ol-eshell /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-eww hides /usr/share/emacs/31.0.50/lisp/org/ol-eww /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-gnus hides /usr/share/emacs/31.0.50/lisp/org/ol-gnus /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-info hides /usr/share/emacs/31.0.50/lisp/org/ol-info /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-irc hides /usr/share/emacs/31.0.50/lisp/org/ol-irc /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-man hides /usr/share/emacs/31.0.50/lisp/org/ol-man /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-mhe hides /usr/share/emacs/31.0.50/lisp/org/ol-mhe /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-rmail hides /usr/share/emacs/31.0.50/lisp/org/ol-rmail /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol-w3m hides /usr/share/emacs/31.0.50/lisp/org/ol-w3m /home/st/.config/emacs/.local/straight/build-31.0.50/org/ol hides /usr/share/emacs/31.0.50/lisp/org/ol /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-agenda hides /usr/share/emacs/31.0.50/lisp/org/org-agenda /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-archive hides /usr/share/emacs/31.0.50/lisp/org/org-archive /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-attach-git hides /usr/share/emacs/31.0.50/lisp/org/org-attach-git /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-attach hides /usr/share/emacs/31.0.50/lisp/org/org-attach /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-clock hides /usr/share/emacs/31.0.50/lisp/org/org-clock /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-colview hides /usr/share/emacs/31.0.50/lisp/org/org-colview /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-compat hides /usr/share/emacs/31.0.50/lisp/org/org-compat /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-crypt hides /usr/share/emacs/31.0.50/lisp/org/org-crypt /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-ctags hides /usr/share/emacs/31.0.50/lisp/org/org-ctags /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-cycle hides /usr/share/emacs/31.0.50/lisp/org/org-cycle /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-datetree hides /usr/share/emacs/31.0.50/lisp/org/org-datetree /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-duration hides /usr/share/emacs/31.0.50/lisp/org/org-duration /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-element-ast hides /usr/share/emacs/31.0.50/lisp/org/org-element-ast /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-element hides /usr/share/emacs/31.0.50/lisp/org/org-element /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-entities hides /usr/share/emacs/31.0.50/lisp/org/org-entities /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-faces hides /usr/share/emacs/31.0.50/lisp/org/org-faces /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-feed hides /usr/share/emacs/31.0.50/lisp/org/org-feed /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-fold-core hides /usr/share/emacs/31.0.50/lisp/org/org-fold-core /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-fold hides /usr/share/emacs/31.0.50/lisp/org/org-fold /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-footnote hides /usr/share/emacs/31.0.50/lisp/org/org-footnote /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-goto hides /usr/share/emacs/31.0.50/lisp/org/org-goto /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-habit hides /usr/share/emacs/31.0.50/lisp/org/org-habit /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-id hides /usr/share/emacs/31.0.50/lisp/org/org-id /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-indent hides /usr/share/emacs/31.0.50/lisp/org/org-indent /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-inlinetask hides /usr/share/emacs/31.0.50/lisp/org/org-inlinetask /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-keys hides /usr/share/emacs/31.0.50/lisp/org/org-keys /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-macro hides /usr/share/emacs/31.0.50/lisp/org/org-macro /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-macs hides /usr/share/emacs/31.0.50/lisp/org/org-macs /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-mobile hides /usr/share/emacs/31.0.50/lisp/org/org-mobile /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-mouse hides /usr/share/emacs/31.0.50/lisp/org/org-mouse /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-num hides /usr/share/emacs/31.0.50/lisp/org/org-num /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-pcomplete hides /usr/share/emacs/31.0.50/lisp/org/org-pcomplete /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-persist hides /usr/share/emacs/31.0.50/lisp/org/org-persist /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-plot hides /usr/share/emacs/31.0.50/lisp/org/org-plot /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-protocol hides /usr/share/emacs/31.0.50/lisp/org/org-protocol /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-refile hides /usr/share/emacs/31.0.50/lisp/org/org-refile /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-tempo hides /usr/share/emacs/31.0.50/lisp/org/org-tempo /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-timer hides /usr/share/emacs/31.0.50/lisp/org/org-timer /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-version hides /usr/share/emacs/31.0.50/lisp/org/org-version /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-ascii hides /usr/share/emacs/31.0.50/lisp/org/ox-ascii /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-beamer hides /usr/share/emacs/31.0.50/lisp/org/ox-beamer /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-html hides /usr/share/emacs/31.0.50/lisp/org/ox-html /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-icalendar hides /usr/share/emacs/31.0.50/lisp/org/ox-icalendar /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-koma-letter hides /usr/share/emacs/31.0.50/lisp/org/ox-koma-letter /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-latex hides /usr/share/emacs/31.0.50/lisp/org/ox-latex /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-man hides /usr/share/emacs/31.0.50/lisp/org/ox-man /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-md hides /usr/share/emacs/31.0.50/lisp/org/ox-md /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-odt hides /usr/share/emacs/31.0.50/lisp/org/ox-odt /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-org hides /usr/share/emacs/31.0.50/lisp/org/ox-org /home/st/.config/emacs/.local/straight/build-31.0.50/org/ox-texinfo hides /usr/share/emacs/31.0.50/lisp/org/ox-texinfo /home/st/.config/emacs/.local/straight/build-31.0.50/org/org-loaddefs hides /usr/share/emacs/31.0.50/lisp/org/org-loaddefs /home/st/.config/emacs/.local/straight/build-31.0.50/soap-client/soap-client hides /usr/share/emacs/31.0.50/lisp/net/soap-client /home/st/.config/emacs/.local/straight/build-31.0.50/soap-client/soap-inspect hides /usr/share/emacs/31.0.50/lisp/net/soap-inspect /home/st/.config/emacs/.local/straight/build-31.0.50/compat/compat hides /usr/share/emacs/31.0.50/lisp/emacs-lisp/compat Features: (shadow emacsbug qp gnus-cite smiley mail-extr textsec uni-scripts idna-mapping ucs-normalize uni-confusable textsec-check evil-collection-macrostep macrostep use-package-chords use-package-tests eshell-syntax-highlighting fish-completion eshell-bookmark eshell-prompt-extras em-pred make-mode evil-collection-git-timemachine git-timemachine magit-patch magit-subtree magit-gitignore magit-ediff tramp-cmds cape-char ispell buttercup buttercup-compat overseer pkg-info epl modus-vivendi-tinted-theme evil-nerd-commenter evil-nerd-commenter-operator evil-nerd-commenter-sdk misearch multi-isearch git-rebase magit-extras evil-anzu isearch-mb pipenv indent-bars-ts indent-bars python-el-fgallina-expansions smartparens-python evil-collection-python pyvenv python elisp-def evil-collection-ert ert vc-hg vc-svn diff-hl-dired diredfl gnus-dired dirvish-yank dired-aux dirvish-subtree dired-x dirvish-collapse dirvish-icons dirvish-widgets dirvish anzu evil-collection-evil-mc evil-mc evil-mc-command-execute evil-mc-command-record evil-mc-cursor-make evil-mc-region evil-mc-cursor-state evil-mc-undo evil-mc-vars evil-mc-known-commands evil-mc-common evil-multiedit iedit iedit-lib mc-hide-unmatched-lines-mode mc-mark-more html-mode-expansions smartparens-html sgml-mode facemenu mc-cycle-cursors multiple-cursors-core evil-collection-leetcode leetcode evil-collection-hackernews hackernews noaa dotassoc kv evil-collection-debbugs debbugs soap-client rng-xsd xsd-regexp debbugs-compat pomm alert log4e gntp password-generator lorem-ipsum zone-pgm-spoopy zone-nyan esxml zone-rainbow zone-matrix snow flames-of-freedom fireplace klondike chess chess-engine chess-pgn chess-database chess-display chess-var chess-random chess-module chess-input chess-algebraic chess-fen chess-game chess-ply chess-pos chess-message dunnet bubbles evil-collection-tetris tetris speed-type evil-collection-snake snake gamegrid hi-lock evil-markdown iscroll yasnippet-capf dabbrev emacsql-sqlite-builtin elisp-demos info-colors diff-hl-flydiff evil-collection-helpful helpful cc-langs cc-vars cc-defs trace cl-print evil-collection-edebug edebug evil-collection-debug debug backtrace info-look help-fns evil-collection-elisp-refs elisp-refs nerd-icons-corfu array neato-graph-bar evil-collection-daemons daemons evil-collection-disk-usage disk-usage pulseaudio-control evil-collection-trashed trashed helm-rage helm-linux-disks linux-disk helm-system-packages consult-mu-contacts-embark consult-mu-contacts consult-mu-compose-embark consult-mu-compose consult-mu-embark consult-mu consult-gh-embark consult-gh ox-gfm ox-odt rng-loc rng-uri rng-parse rng-match rng-dt rng-util rng-pttrn nxml-parse nxml-ns nxml-enc xmltok nxml-util ox-latex ox-icalendar ox-ascii ox-md ox-html table ox-publish ox evil-collection-pdf pdf-history delsel pdf-occur evil-collection-tablist tablist tablist-filter semantic/wisent/comp semantic/wisent semantic/wisent/wisent semantic/util-modes semantic/util semantic semantic/tag semantic/lex semantic/fw mode-local cedet pdf-isearch pdf-misc pdf-tools saveplace-pdf-view pdf-view pdf-cache pdf-info pdf-util pdf-macs gnus-srvr parrot parrot-progress parrot-rotate evil-collection-eww eww mm-url lsp-clangd lsp-ui lsp-ui-flycheck lsp-ui-doc evil-collection-lsp-ui-imenu lsp-ui-imenu lsp-ui-peek lsp-ui-sideline lsp-ui-util treemacs-magit treemacs-nerd-icons lsp-treemacs lsp-treemacs-generic lsp-treemacs-themes treemacs-treelib treemacs-persp treemacs-projectile treemacs-evil treemacs treemacs-header-line treemacs-compatibility treemacs-mode treemacs-bookmarks treemacs-tags treemacs-interface treemacs-persistence treemacs-filewatch-mode treemacs-follow-mode treemacs-rendering treemacs-annotations treemacs-async treemacs-workspaces treemacs-dom treemacs-visuals treemacs-fringe-indicator treemacs-faces treemacs-icons treemacs-scope treemacs-themes treemacs-core-utils pfuture treemacs-logging treemacs-customization treemacs-macros lsp-mode lsp-protocol evil-collection-xref xref spinner forge-llm dall-e-shell aidermacs aidermacs-output evil-collection-ediff ediff ediff-merg ediff-mult ediff-wind ediff-diff ediff-help ediff-init ediff-util aidermacs-models aidermacs-backends aidermacs-backend-vterm aidermacs-backend-comint find-dired evil-collection-gptel gptel-openai-extras gptel-anthropic gptel gptel-openai chatgpt-shell chatgpt-shell-prompt-compose chatgpt-shell-perplexity chatgpt-shell-openrouter chatgpt-shell-openai chatgpt-shell-ollama chatgpt-shell-kagi chatgpt-shell-google chatgpt-shell-deepseek chatgpt-shell-anthropic shell-maker evil-collection-view view goto-addr ielm evil-collection-mpc mpc vtable helm-emms helm-adaptive somafm empv evil-collection-emms emms-mode-line-cycle emms-playing-time emms-mode-line lyrics-fetcher emms-lyrics emms-browser sort emms-playlist-sort emms-volume emms-volume-sndioctl emms-volume-mixerctl emms-volume-pulse emms-volume-amixer lyrics-fetcher-neteasecloud lyrics-fetcher-genius request emms-player-mpd emms-url tq emms-playlist-mode emms-source-playlist emms-source-file locate emms-player-simple emms-info-exiftool emms-info-native emms-info-native-spc emms-info-native-mp3 emms-info-native-ogg emms-info-native-opus emms-info-native-flac emms-info-native-vorbis bindat emms-last-played emms-score emms-cache emms-info emms-later-do emms emms-compat evil-collection-elfeed elfeed-tube elfeed-tube-utils aio elfeed-org elfeed-show elfeed-search elfeed-csv elfeed elfeed-curl elfeed-log elfeed-db elfeed-lib url-queue xml-query evil-collection-helm helm-files evil-collection-image-dired image-dired image-dired-tags image-dired-external image-dired-util evil-collection-image image-mode exif helm-buffers helm-x-icons helm-occur helm-tags helm-locate helm-grep helm-regexp helm-utils helm-help helm-types helm-posframe helm helm-global-bindings helm-easymenu helm-core helm-source helm-multi-match helm-lib async evil-collection-mu4e mu4e-compat mu4e mu4e-org mu4e-notification notifications mu4e-main smtpmail mu4e-view mu4e-mime-parts mu4e-headers mu4e-thread mu4e-actions mu4e-compose mu4e-draft evil-collection-gnus spam spam-stat gnus-uu yenc gnus-msg gnus-async nntp gnus-registry registry gnus-art mm-uu mml2015 mm-view mml-smime smime dig gnus-sum gnus-group gnus-undo gnus-start gnus-dbus gnus-cloud nnimap nnmail mail-source utf7 nnoo gnus-spec gnus-win gnus-int gnus-range gnus nnheader range mu4e-search mu4e-lists mu4e-bookmarks mu4e-mark mu4e-message flow-fill mule-util mu4e-contacts mu4e-update mu4e-folders mu4e-context mu4e-query-items mu4e-server mu4e-modeline mu4e-vars mu4e-helpers mu4e-window ido mu4e-obsolete hydra lv evil-collection-vterm vterm vterm-module em-rebind em-elecslash em-alias em-term em-script em-ls em-hist em-glob em-extpipe em-cmpl em-basic em-banner em-smart em-tramp eshell-did-you-mean evil-collection-eshell eshell-atuin em-prompt esh-help evil-collection-man man em-unix eshell-z em-dirs eshell esh-mode esh-var evil-collection-eat eat term/xterm xterm evil-collection-term term ehelp esh-cmd esh-ext esh-proc esh-opt esh-io esh-arg esh-module esh-module-loaddefs esh-util theme-magic ewal circadian solar cal-dst zone org-agenda the-org-mode-expansions embark-org evil-collection-org oc-csl citeproc citeproc-itemgetters parsebib citeproc-cite citeproc-biblatex citeproc-bibtex ol-bibtex citeproc-subbibs citeproc-sort citeproc-name citeproc-formatters citeproc-proc citeproc-disamb citeproc-itemdata citeproc-generic-elements citeproc-macro citeproc-choose citeproc-date citeproc-number smartparens-rst rst citeproc-context citeproc-prange citeproc-style citeproc-locale citeproc-term citeproc-rt citeproc-lib citeproc-s queue bibtex evil-collection-org-roam org-roam-migrate org-roam-log org-roam-mode org-roam-capture org-roam-id org-roam-node org-roam-db org-roam-utils org-roam-compat org-roam org-capture org-element org-persist avl-tree generator org-attach org-id org-refile org-element-ast inline smartparens-org org ob-emacs-lisp org-table org-loaddefs ob ob-tangle ol ob-ref ob-lob ob-table ob-exp org-macro org-src org-keys oc-biblatex oc ob-comint ob-core org-cycle org-fold ob-eval org-pcomplete org-list org-footnote org-fold-core org-entities org-faces org-version org-compat org-macs evil-collection-calendar cal-menu calendar cal-loaddefs magit-gptcommit llm-claude llm-provider-utils llm-models llm-request-plz plz-event-source plz-media-type plz llm code-review code-review-actions code-review-comment code-review-section code-review-bitbucket code-review-faces shr pixel-fill kinsoku url-file svg dom emojify evil-collection-apropos apropos ht code-review-gitlab code-review-utils evil-collection-forge embark-vc forge-repos forge-tablist hl-line forge-topics forge-commands forge-semi forge-bitbucket buck forge-gogs gogs forge-gitea gtea forge-gitlab glab forge-github forge-forgejo forge-notify forge-revnote forge-pullreq forge-issue forge-discussion forge-topic yaml eieio-custom bug-reference forge-post smartparens-markdown evil-collection-markdown-mode markdown-mode edit-indirect forge-repo forge forge-core forge-db code-review-parse-hunk code-review-github code-review-db uuidgen calc-misc calc-ext evil-collection-calc calc calc-loaddefs calc-macs a code-review-interfaces deferred ghub-graphql treepy gsexp ghub closql emacsql-sqlite emacsql emacsql-compiler eieio-base magit-bookmark magit-autoloads evil-collection-magit magit-submodule magit-blame magit-stash magit-reflog magit-bisect magit-push magit-pull magit-fetch magit-clone magit-remote magit-commit magit-sequence magit-notes magit-worktree magit-tag magit-merge magit-branch magit-reset magit-files magit-refs magit-status magit evil-collection-magit-repos magit-repos magit-apply magit-wip magit-log which-func magit-diff evil-collection-smerge-mode smerge-mode diff magit-core magit-autorevert magit-margin magit-transient doom-snippets doom-snippets-lib yasnippet bind-chord use-package use-package-ensure use-package-delight use-package-diminish use-package-bind-key use-package-chords-autoloads bind-key bind-chord-autoloads key-chord-autoloads loaddefs-gen radix-tree evil-collection-tar-mode tar-mode evil-collection-arc-mode arc-mode archive-mode mm-archive gnutls network-stream url-cache url-http url-auth url-gw nsm try hide-mode-line compile-angel evil-owl beacon projectile evil-collection-grep grep evil-collection-ibuffer ibuffer-vc ibuf-ext ibuffer ibuffer-loaddefs evil-collection-vc-git vc-git ebuild-mode skeleton evil-collection-sh-script sh-script smie treesit executable jka-compr auto-minor-mode disp-table whitespace flycheck-posframe git-auto-commit-mode apheleia apheleia-rcs apheleia-dp apheleia-formatters apheleia-utils apheleia-log apheleia-formatter-context embrace expand-region text-mode-expansions er-basic-expansions expand-region-core expand-region-custom eros tramp-cache time-stamp tramp-sh tramp trampver tramp-integration files-x tramp-message tramp-compat parse-time iso8601 tramp-loaddefs evil-collection-flymake flymake project highlight-quoted rainbow-delimiters evil-collection-outline noutline outline vi-tilde-fringe highlight-numbers parent-mode display-line-numbers hl-todo copilot copilot-balancer jsonrpc cape evil-cleverparens evil-cleverparens-text-objects evil-cleverparens-util paredit evil-collection-elisp-mode elisp-mode recentf tree-widget saveplace evil-collection-so-long so-long evil-collection-diff-hl diff-hl evil-collection-log-view log-view evil-collection-vc-dir vc-dir ewoc vc vc-dispatcher envrc inheritenv evil-collection-diff-mode diff-mode track-changes git-commit evil-collection-log-edit log-edit message sendmail yank-media puny evil-collection-dired dired dired-loaddefs rfc822 mml mml-sec evil-collection-epa epa epg rfc6068 epg-config gnus-util mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 ietf-drums mailabbrev mail-utils gmm-utils mailheader pcvs-util add-log magit-process evil-collection-with-editor with-editor shell pcomplete magit-mode transient benchmark magit-git magit-base evil-collection-magit-section magit-section format-spec crm llama vimish-fold time-date vertico-directory cursor-sensor mb-depth vertico-repeat vertico-posframe posframe evil-collection-which-key which-key savehist better-jumper vertico-multiform vertico-mouse evil-collection-vertico vertico orderless nerd-icons-completion marginalia corfu-history corfu-popupinfo evil-collection-corfu corfu evil-goggles evil-easymotion avy key-chord evil-escape evil-snipe restore-point evil-collection-beginend beginend repeat pulse color evil-collection-embark embark-consult consult-flycheck evil-collection-consult consult evil-collection-bookmark bookmark embark ffap ednc mm-util mail-prsvr face-remap server gcmh winner cus-start smartparens-config smartparens-text smartparens advice loadhist undo-fu-session undo-fu evil-collection-flycheck flycheck-package package-lint evil-collection-imenu imenu evil-collection-finder finder finder-inf lisp-mnt evil-collection-package-menu package browse-url xdg url url-proxy url-privacy url-expand url-methods url-history url-cookie generate-lisp-file url-domsuf url-util mailcap url-handlers url-parse auth-source eieio eieio-core password-cache url-vars flycheck json map find-func ws-butler editorconfig editorconfig-core editorconfig-core-handle editorconfig-fnmatch yank-indent persp-mode doom-modeline doom-modeline-segments doom-modeline-env doom-modeline-core shrink-path nerd-icons nerd-icons-faces nerd-icons-data nerd-icons-data-mdicon nerd-icons-data-flicon nerd-icons-data-codicon nerd-icons-data-devicon nerd-icons-data-sucicon nerd-icons-data-wicon nerd-icons-data-faicon nerd-icons-data-powerline nerd-icons-data-octicon nerd-icons-data-pomicon nerd-icons-data-ipsicon minions compat winum modus-operandi-tinted-theme modus-themes comint-histories f dash s define-repeat-map persistent-scratch evil-collection-tabulated-list evil-collection-tab-bar evil-collection-simple evil-collection-replace evil-collection-process-menu evil-collection-kmacro evil-collection-info evil-collection-indent evil-collection-help evil-collection-eldoc evil-collection-custom evil-collection-compile evil-collection-comint evil-collection-buff-menu evil-collection annalist dbus autorevert filenotify dtrt-indent compile text-property-search comint ansi-osc ansi-color xml cus-edit pp cus-load wid-edit cae-lib mu4e-config html2text derived smartparens-lua let-alist ibuf-macs evil evil-integration evil-maps evil-commands reveal evil-jumps evil-command-window evil-types evil-search evil-macros evil-repeat evil-states evil-core evil-common thingatpt rect evil-vars ring edmacro kmacro byte-opt doom-editor doom-projects doom-ui doom-keybinds use-package-core general info tex-site site-gentoo :system easy-mmode comp comp-cstr cl-extra help-mode warnings icons comp-run bytecomp byte-compile comp-common rx doom-start doom doom-lib cl-seq cl-macs cl-loaddefs cl-lib gv harfbuzz jansson dynamic-modules pcase subr-x rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/x-win x-win term/common-win x-dnd touch-screen tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting font-render-setting cairo x-toolkit xinput2 x multi-tty move-toolbar make-network-process tty-child-frames native-compile mps emacs) Memory information: ((conses 24 0 0) (symbols 56 0 0) (strings 40 0 0) (string-bytes 1 0) (vectors 24 0) (vector-slots 8 0 0) (floats 24 0 0) (intervals 64 0 0) (buffers 1000 0))
bug-gnu-emacs <at> gnu.org
:bug#77324
; Package emacs
.
(Fri, 28 Mar 2025 16:21:02 GMT) Full text and rfc822 format available.Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
From: StrawberryTea <look <at> strawberrytea.xyz> To: bug-gnu-emacs <at> gnu.org Subject: Re: 31.0.50; bind-chord uses internal representation of key-chord instead of key-chord-define Date: Fri, 28 Mar 2025 12:20:02 -0400
StrawberryTea <look <at> strawberrytea.xyz> writes: Oh wait, regarding the last bug I submitted about bind-chord, I have realized that bind-chord is being maintained separately on GitHub and is not included in the use-package Emacs is maintaining. So I have submitted my code change there https://github.com/jwiegley/use-package/pull/1088 Sincerely, StrawberryTea/LemonBreezes > Let me know if I sent this patch correctly. But basically, I am making a > major update to key-chord and need bind-chord to use key-chord-define > instead of hacking the internal representation of a key-chord. > https://github.com/emacsorphanage/key-chord/pull/12 > > Sincerely, > StrawberryTea/LemonBreezes > > From 2ea21cd51de9c6c771787d06e4b3eb90e01b65e8 Mon Sep 17 00:00:00 2001 > From: StrawberryTea <look <at> strawberrytea.xyz> > Date: Thu, 27 Mar 2025 19:56:13 -0400 > Subject: [PATCH] fix: Update bind-chord to use key-chord-define > > --- > bind-chord.el | 16 ++++++++++------ > use-package-chords.el | 4 ++-- > 2 files changed, 12 insertions(+), 8 deletions(-) > > diff --git a/bind-chord.el b/bind-chord.el > index ed736a4..af1dcc8 100644 > --- a/bind-chord.el > +++ b/bind-chord.el > @@ -5,7 +5,7 @@ > ;; Author: Justin Talbott <justin <at> waymondo.com> > ;; Keywords: convenience, tools, extensions > ;; URL: https://github.com/jwiegley/use-package-;; Version: 0.2.1 > +;; Version: 0.2.2 > ;; Package-Requires: ((emacs "24.3") (bind-key "1.0") (key-chord "0.6")) > ;; Filename: bind-chord.el > > @@ -28,17 +28,21 @@ > > (require 'bind-key) > (require 'key-chord nil t) > +(declare-function key-chord-define "key-chord" (keymap keys command)) > > ;;;###autoload > (defmacro bind-chord (chord command &optional keymap) > "Bind CHORD to COMMAND in KEYMAP (`global-map' if not passed)." > (let ((key1 (logand 255 (aref chord 0))) > (key2 (logand 255 (aref chord 1)))) > - (if (eq key1 key2) > - `(bind-key (vector 'key-chord ,key1 ,key2) ,command ,keymap) > - `(progn > - (bind-key (vector 'key-chord ,key1 ,key2) ,command ,keymap) > - (bind-key (vector 'key-chord ,key2 ,key1) ,command ,keymap))))) > + `(progn > + ;; Use key-chord's built-in define function to properly register keys > + (key-chord-define ,(if keymap keymap 'global-map) > + ,(cond > + ((stringp chord) chord) > + ((vectorp chord) chord) > + (t `(string ,key1 ,key2))) > + ,command)))) > > (defun bind-chords-form (args keymap) > "Bind multiple chords at once. > diff --git a/use-package-chords.el b/use-package-chords.el > index 479083b..a5b0393 100644 > --- a/use-package-chords.el > +++ b/use-package-chords.el > @@ -5,8 +5,8 @@ > ;; Author: Justin Talbott <justin <at> waymondo.com> > ;; Keywords: convenience, tools, extensions > ;; URL: https://github.com/jwiegley/use-package-;; Version: 0.2.1 > -;; Package-Requires: ((use-package "2.1") (bind-key "1.0") (bind-chord "0.2") (key-chord "0.6")) > +;; Version: 0.2.2 > +;; Package-Requires: ((use-package "2.1") (bind-key "1.0") (bind-chord "0.2.2") (key-chord "0.6")) > ;; Filename: use-package-chords.el > > ;; This program is free software; you can redistribute it and/or modify
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.