From c9acdb72a4bd95d7ac38d62e92aa79f395c1dccd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 31 Aug 2024 15:16:08 -0400 Subject: [PATCH] refactor(cli): remove bin/doom.cmd This batch script hasn't worked for some time. For v3, I'm working on a Emacs TUI porcelain for the bin/doom script that will serve as a replacement/alternative for folks on Windows (or who simply don't want/need the CLI). --- bin/doom.cmd | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 bin/doom.cmd diff --git a/bin/doom.cmd b/bin/doom.cmd deleted file mode 100644 index 7cba4ca5e..000000000 --- a/bin/doom.cmd +++ /dev/null @@ -1,25 +0,0 @@ -:: Forward the ./doom script to Emacs - -@ECHO OFF -SETLOCAL ENABLEDELAYEDEXPANSION - -PUSHD "%~dp0" >NUL - -SET args= -SET command=%1 - -:LOOP -SHIFT /1 -IF NOT [%1]==[] ( - SET args=%args% %1 - GOTO :LOOP -) - -IF [%command%]==[run] ( - start runemacs -Q %args% -l ..\init.el -f "doom-run-all-startup-hooks-h" -) ELSE ( - emacs --quick --script .\doom -- %* -) - -POPD >NUL -ECHO ON