about summary refs log tree commit diff
path: root/pkgs/profpatsch/execline
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/profpatsch/execline')
-rw-r--r--pkgs/profpatsch/execline/e.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/profpatsch/execline/e.nix b/pkgs/profpatsch/execline/e.nix
index f5e44b66..657f41ce 100644
--- a/pkgs/profpatsch/execline/e.nix
+++ b/pkgs/profpatsch/execline/e.nix
@@ -7,15 +7,15 @@ let
 
   # minimal execline shell
   e = writeExecline "e" {} [
+    bins.rlwrap
+      "--substitute-prompt" "e> "
+      "--remember"
+      "--quote-characters" "\""
+      "--complete-filenames"
     "pipeline" [
-      bins.rlwrap
-        "--substitute-prompt" "e> "
-        "--remember"
-        "--quote-characters" "\""
-        "--complete-filenames"
       bins.cat
     ]
-    "forstdin" "cmd"
+    "forstdin" "-d\n" "cmd"
     "importas" "cmd" "cmd"
     bins.execlineb "-Pc" "$cmd"
   ];