Macros now prefixed with @, instead of suffixed with !
This commit is contained in:
parent
ec694649db
commit
6c06aa0ce7
26 changed files with 265 additions and 247 deletions
|
@ -15,7 +15,7 @@
|
|||
(message "Running: %s" command)
|
||||
(shell-command command)))
|
||||
|
||||
(defmacro +macos--open-with! (id &optional app dir)
|
||||
(defmacro +macos@open-with (id &optional app dir)
|
||||
`(defun ,(intern (format "+macos/%s" id)) ()
|
||||
(interactive)
|
||||
(+macos-open-with ,app ,dir)))
|
||||
|
@ -27,22 +27,22 @@
|
|||
(browse-url buffer-file-name))
|
||||
|
||||
;;;###autoload (autoload '+macos/open-in-default-program "os/macos/autoload" nil t)
|
||||
(+macos--open-with! open-in-default-program)
|
||||
(+macos@open-with open-in-default-program)
|
||||
|
||||
;;;###autoload (autoload '+macos/reveal-in-finder "os/macos/autoload" nil t)
|
||||
(+macos--open-with! reveal-in-finder "Finder" default-directory)
|
||||
(+macos@open-with reveal-in-finder "Finder" default-directory)
|
||||
|
||||
;;;###autoload (autoload '+macos/reveal-project-in-finder "os/macos/autoload" nil t)
|
||||
(+macos--open-with! reveal-project-in-finder "Finder" (doom-project-root))
|
||||
(+macos@open-with reveal-project-in-finder "Finder" (doom-project-root))
|
||||
|
||||
;;;###autoload (autoload '+macos/send-to-transmit "os/macos/autoload" nil t)
|
||||
(+macos--open-with! send-to-transmit "Transmit")
|
||||
(+macos@open-with send-to-transmit "Transmit")
|
||||
|
||||
;;;###autoload (autoload '+macos/send-cwd-to-transmit "os/macos/autoload" nil t)
|
||||
(+macos--open-with! send-cwd-to-transmit "Transmit" default-directory)
|
||||
(+macos@open-with send-cwd-to-transmit "Transmit" default-directory)
|
||||
|
||||
;;;###autoload (autoload '+macos/send-to-launchbar "os/macos/autoload" nil t)
|
||||
(+macos--open-with! send-to-launchbar "LaunchBar")
|
||||
(+macos@open-with send-to-launchbar "LaunchBar")
|
||||
|
||||
;;;###autoload (autoload '+macos/send-project-to-launchbar "os/macos/autoload" nil t)
|
||||
(+macos--open-with! send-project-to-launchbar "LaunchBar" (doom-project-root))
|
||||
(+macos@open-with send-project-to-launchbar "LaunchBar" (doom-project-root))
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
(require 'osx-clipboard)
|
||||
(osx-clipboard-mode +1)))
|
||||
|
||||
(after! evil
|
||||
(@after evil
|
||||
;; On OSX, stop copying each visual state move to the clipboard:
|
||||
;; https://bitbucket.org/lyro/evil/issue/336/osx-visual-state-copies-the-region-on
|
||||
;; Most of this code grokked from:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; os/macos/packages.el
|
||||
|
||||
(package! exec-path-from-shell)
|
||||
(package! osx-clipboard)
|
||||
(@package exec-path-from-shell)
|
||||
(@package osx-clipboard)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue