core.os.el

This commit is contained in:
Henrik Lissner 2016-05-22 23:09:49 -04:00
parent da17eb5d22
commit 0ef6837648

11
core/core-os.el Normal file
View file

@ -0,0 +1,11 @@
;;; core-os.el
(defun doom-open-with (&optional app-name path)
(error "`doom-open-with' not implemented"))
(cond (IS-MAC (require 'core-os-osx))
(IS-LINUX (require 'core-os-osx))
(IS-WINDOWS (require 'core-os-osx)))
(provide 'core-os)
;;; core-os.el ends here