doomemacs/bin/doom.cmd
2018-07-09 15:29:38 +02:00

15 lines
220 B
Batchfile

:: Forward the ./doom script to Emacs
@ECHO OFF
PUSHD "%~dp0" >NUL
IF %1=="run" (
SHIFT
emacs -Q %* -l init.el -f "doom|run-all-startup-hooks"
) ELSE (
emacs --quick --script ./doom -- %*
)
POPD >NUL
ECHO ON