-
-
Notifications
You must be signed in to change notification settings - Fork 140
Closed
Labels
bugSomething isn't workingSomething isn't workingclient-elixirenhancementNew feature or requestNew feature or requestwindows
Description
On windows, iex is iex.bat. There's another program called iex that clashes with iex.bat. Here's the suggested change to fix this issue:
;; fnl/conjure/client/elixir/stdio.fnl line 49
(config.merge
{:client
{:elixir
{:stdio
{:command (if (= (. (vim.loop.os_uname) "sysname") "Windows_NT") "iex.bat --no-color" "iex --no-color"); M.start will overwrite this.
:standalone_command (if (= (. (vim.loop.os_uname) "sysname") "Windows_NT") "iex.bat --no-color" "iex --no-color")
:prompt_pattern "iex%(%d+%)> "}}}})
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingclient-elixirenhancementNew feature or requestNew feature or requestwindows