Files
doomemacs/lisp/cli/run.el
Henrik Lissner 7f6a2d284e refactor(cli): doom run: rename to 'doom emacs'
In v3, 'doom run' will have a different purpose (for launching project
or CI/CD tasks), so it now emits a warning that it's moved to a new
'doom emacs' command.

I refrain from updating documentation because a rewrite of our docs will
be coming up soon.
2025-06-25 17:36:59 +02:00

27 lines
339 B
EmacsLisp

;;; lisp/cli/run.el --- launching project and CI/CD tasks -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
;;
;;; Variables
;; None yet!
;;
;;; Commands
;; (defcli! run
;; (&rest tasks)
;; "Run a project task or CI/CD pipeline."
;; :benchmark nil
;; )
;;
;;; Helpers
(provide 'doom-cli '(run))
;;; run.el ends here