From 34e02cbb81792e6fa19a05f5cb4753a5ca69be63 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Wed, 4 Jun 2025 22:46:39 +0300 Subject: [PATCH] Add an Ivy action to open a file using an external application --- .config/emacs/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 5915afe..ec71539 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -80,6 +80,8 @@ ("C-c V" . ivy-pop-view) :map ivy-minibuffer-map ("C-" . ivy-immediate-done)) + :init + (ivy-add-actions 'project-find-file '(("x" counsel-locate-action-extern "open externally"))) :config (setq ivy-re-builders-alist '((t . ivy--regex-ignore-order)))