From 3c1860143728f60de6d76783c4248f627e756f08 Mon Sep 17 00:00:00 2001 From: Mingwei Zhang Date: Tue, 25 Feb 2020 07:11:56 -0800 Subject: [PATCH] add `open-in-iterm` shortcut for macos module `+macos/open-in-iterm` opens the current directory in `iTerm`, which as far as i know is a popular alternative to the macos's default terminal emulator `term`. --- modules/tools/macos/autoload.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/tools/macos/autoload.el b/modules/tools/macos/autoload.el index 0aa9f8b53..6aa1f006c 100644 --- a/modules/tools/macos/autoload.el +++ b/modules/tools/macos/autoload.el @@ -49,3 +49,6 @@ ;;;###autoload (autoload '+macos/send-project-to-launchbar "tools/macos/autoload" nil t) (+macos--open-with send-project-to-launchbar "LaunchBar" (or (doom-project-root) default-directory)) + +;;;###autoload (autoload '+macos/open-in-iterm "tools/macos/autoload" nil t) +(+macos--open-with open-in-iterm "iTerm" default-directory)