From d99742ff92565d75ccaf8119d3f4e895b9ea4ae6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 7 May 2025 21:20:46 -0400 Subject: [PATCH] tweak(default): move macos send-to-*/open-in-* app keybinds In 9f16efb these keys were moved from evil users, this commit mirrors the changes for non-evil users. I.e. Moves 'C-c o {u,U,l,L,i,I}' to 'C-c o s {u,U,l,L,i,I}'. Amend: 9f16efbb4ed3 --- modules/config/default/+emacs-bindings.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/config/default/+emacs-bindings.el b/modules/config/default/+emacs-bindings.el index 1f670bdaf..734a87775 100644 --- a/modules/config/default/+emacs-bindings.el +++ b/modules/config/default/+emacs-bindings.el @@ -268,12 +268,13 @@ (:when (modulep! :os macos) :desc "Reveal in Finder" "o" #'+macos/reveal-in-finder :desc "Reveal project in Finder" "O" #'+macos/reveal-project-in-finder - :desc "Send to Transmit" "u" #'+macos/send-to-transmit - :desc "Send project to Transmit" "U" #'+macos/send-project-to-transmit - :desc "Send to Launchbar" "l" #'+macos/send-to-launchbar - :desc "Send project to Launchbar" "L" #'+macos/send-project-to-launchbar - :desc "Open in iTerm" "i" #'+macos/open-in-iterm - :desc "Open in new iTerm window" "I" #'+macos/open-in-iterm-new-window) + (:prefix ("s" . "send to application") + :desc "Send to Transmit" "t" #'+macos/send-to-transmit + :desc "Send project to Transmit" "T" #'+macos/send-project-to-transmit + :desc "Send to Launchbar" "l" #'+macos/send-to-launchbar + :desc "Send project to Launchbar" "L" #'+macos/send-project-to-launchbar + :desc "Open in iTerm" "i" #'+macos/open-in-iterm + :desc "Open in new iTerm window" "I" #'+macos/open-in-iterm-new-window)) (:when (modulep! :tools docker) :desc "Docker" "D" #'docker) (:when (modulep! :email mu4e)