From 0ef6837648ce38bb25ff34998175cc01d178e587 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 22 May 2016 23:09:49 -0400 Subject: [PATCH] core.os.el --- core/core-os.el | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 core/core-os.el diff --git a/core/core-os.el b/core/core-os.el new file mode 100644 index 000000000..f68c0d04a --- /dev/null +++ b/core/core-os.el @@ -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