Sublime Forum

Build system for launching ghci from Windows CMD

#1

Hi!

I have the following build system that works on Linux:

{ "selector": "source.haskell", "working_dir": "$file_path", "cmd": "xfce4-terminal","-x","ghci", "$file"] }

How to achieve the same functionality in windows?? Open a CMD with the file loaded in a GHCi prompt without exiting??

0 Likes

#2

In Windows, build systems are launched in a way that prevents the cmd prompt behind the scenes to pop up. Sadly, this also applies to a variety of other use cases where you would launch a sub-window or something.

0 Likes