From ba5345a853354ec37485d76b68df9d4db91c2f0a Mon Sep 17 00:00:00 2001 From: Uladzimir Stsepchanka Date: Fri, 3 Feb 2023 10:18:12 +0300 Subject: [PATCH] Add --no-terminal flag to stack method Removes garbage '^H' symbols from output --- dante.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dante.el b/dante.el index cd30eec..3a24f6e 100644 --- a/dante.el +++ b/dante.el @@ -108,7 +108,7 @@ will be in loaded in different GHCi sessions." (impure-nix dante-cabal-nix ("nix-shell" "--run" (concat "cabal v1-repl " dante-target " --builddir=dist/dante"))) (new-build "cabal.project.local" ("cabal" "new-repl" dante-target "--builddir=dist/dante")) (nix-ghci ,(lambda (d) (directory-files d t "shell.nix\\|default.nix")) ("nix-shell" "--pure" "--run" "ghci")) - (stack "stack.yaml" ("stack" "repl" dante-target)) + (stack "stack.yaml" ("stack" "repl" "--no-terminal" dante-target)) (mafia "mafia" ("mafia" "repl" dante-target)) (bare-cabal ,(lambda (d) (directory-files d t "..cabal$")) ("cabal" "v2-repl" dante-target "--builddir=newdist/dante")) (bare-v1-cabal ,(lambda (d) (directory-files d t "..cabal$")) ("cabal" "v1-repl" dante-target "--builddir=dist/dante"))