- SPC o r now prompts for a REPL to open when none was found for the current buffer. - REPL handlers must now follow the naming convention "*/open*-repl". e.g. +python/open-ipython-repl, +emacs-lisp/open-repl, etc. - +eval/open-repl has been split in two: - +eval/open-repl-other-window - +eval/open-repl-same-window
20 lines
583 B
EmacsLisp
20 lines
583 B
EmacsLisp
;;; lang/lua/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
;;;###autoload
|
|
(defun +lua/open-repl ()
|
|
"Open Lua REPL."
|
|
(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))))))
|
|
|