From 9f16efbb4ed3262be9f24075f0a35fc55f448ae2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 6 May 2025 15:39:42 -0400 Subject: [PATCH] tweak(default): move macos send-to-*/open-in-* app keybinds Moves 'SPC o {u,U,l,L,i,I}' to 'SPC o s {u,U,l,L,i,I}' to make headway for other 'SPC o' keybinds. --- modules/config/default/+evil-bindings.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 59e06fa21..a10b31fa8 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -746,12 +746,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)