doomemacs/modules/lang/lua/autoload.el

21 lines
580 B
EmacsLisp
Raw Normal View History

;;; lang/lua/autoload.el -*- lexical-binding: t; -*-
2017-02-19 18:57:16 -05:00
;;;###autoload
(defun +lua/open-repl ()
"Open Lua REPL."
2017-02-19 18:57:16 -05:00
(interactive)
(lua-start-process "lua" "lua")
(pop-to-buffer lua-process-buffer))
;;;###autoload
(defun +lua/run-love-game ()
"Run the current project with Love2D."
(interactive)
(when-let (root (locate-dominating-file buffer-file-name "main.lua"))
(async-shell-command
(format "%s %s"
(or (executable-find "love")
(if IS-MAC "open -a love.app"))
(shell-quote-argument (file-name-directory root))))))