diff options
author | jao <jao@gnu.org> | 2025-09-20 22:54:02 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-09-20 22:54:02 +0100 |
commit | a0e65b40f6a923122355c876983ecb8e3b799c2c (patch) | |
tree | db46f140e41f9e49e5b4602add0d9f2281e76e2a | |
parent | abda6921e5a013051fc9fcd5de8d682be1a4d44d (diff) | |
download | elibs-a0e65b40f6a923122355c876983ecb8e3b799c2c.tar.gz elibs-a0e65b40f6a923122355c876983ecb8e3b799c2c.tar.bz2 |
shortcuts for r2e mode
-rw-r--r-- | init.el | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1620,6 +1620,11 @@ (setq widget-image-enable nil) ;;; Network +;;;; r2e + +(use-package jao-r2e + :init (setq jao-r2e-confirm-toggle nil)) + ;;;; nm applet (jao-when-linux (jao-shell-def-exec jao-nm-applet "nm-applet") @@ -1705,15 +1710,12 @@ ("/" "open note" jao-org-notes-open) ("\\" "open note by tags" jao-org-notes-consult-tags) ("g" "ripgrep notes" jao-org-notes-consult-ripgrep)] - ["Timers" - ("t t" "set new" tmr) - ("t c" "cancel" tmr-cancel) - ("t l" "list" tmr-list-timers)] ["Network" - ("s" "ssh" jao-ssh)] + ("s" "ssh" jao-ssh) + ("r" "r2e" jao-r2e)] ["Utilities" ("l" "packages" jao-list-packages) - ("r" "translate" reverso) + ("R" "translate" reverso) ("f" "copy buffer file name" copy-buffer-file-name-as-kill)]]) (transient-define-prefix jao-transient-utils () "Global operations." |