From 6328f1c7c8df25d5596d8dc97c6ab50778dbb0a9 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 20 Dec 2021 11:49:23 +0300 Subject: feat(tazjin/emacs): add zoxide-open-magit and a binding for it Change-Id: Ibe3264769ab6e6d1400088e8a72d3ef22dc4cd78 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4514 Reviewed-by: tazjin Autosubmit: tazjin Tested-by: BuildkiteCI --- users/tazjin/emacs/config/bindings.el | 3 +++ users/tazjin/emacs/config/functions.el | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/users/tazjin/emacs/config/bindings.el b/users/tazjin/emacs/config/bindings.el index 21cca06cc8..916d947756 100644 --- a/users/tazjin/emacs/config/bindings.el +++ b/users/tazjin/emacs/config/bindings.el @@ -49,6 +49,9 @@ ;; Open the depot (global-set-key (kbd "s-s d") #'tvl-depot-status) +;; Open any repo through zoxide +(global-set-key (kbd "s-s r") #'zoxide-open-magit) + ;; Add subthread collapsing to notmuch-show. ;; ;; C-, closes a thread, C-. opens a thread. This mirrors stepping diff --git a/users/tazjin/emacs/config/functions.el b/users/tazjin/emacs/config/functions.el index 5963d142c1..ba7301e794 100644 --- a/users/tazjin/emacs/config/functions.el +++ b/users/tazjin/emacs/config/functions.el @@ -325,4 +325,9 @@ the GPG agent correctly." (if-let ((pr (project-current))) (project-root pr))))) +(defun zoxide-open-magit () + "Query Zoxide for paths and open magit in the result." + (interactive) + (zoxide-open-with nil #'magit-status-setup-buffer)) + (provide 'functions) -- cgit 1.4.1