iex repl position
Closed this issue ยท 2 comments
ngnguyen1 commented
Hi,
When i start iex repl by command alchemist-iex-run
, the repl is located at the right. I used popwin to put it to the bottom but it's not work.
Here is the code:
(use-package popwin
:ensure popwin
:config (progn
(popwin-mode 1)
(push '(Alchemist-IEx :position bottom) popwin:special-display-config)))
Pls help me.
gausby commented
It has been a while since I used popwin (switched to schakle a while back), but try renaming Alchemist-IEx
to "*Alchemist-IEx*"
.
(use-package popwin
:ensure popwin
:config (progn
(popwin-mode 1)
(push '("*Alchemist-IEx*" :position bottom) popwin:special-display-config)))