Problem configuring hy-mode.el and jedhy #2055
-
Long time user of Clojure, but never been a huge fan of it being coupled with Java. Imagine my excitement to discover Clojure built on top of Python as HY! I’m trying Hy with emacs but am having trouble getting it working smoothly. Here is what I have done so far. (Linux 20.04, Anaconda python, conda 3.8)
Using the hy repl from the terminal works as expected.
I’ve made sure that
Other things within the hy buffer and shell are not working as expected. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hello! Yes this is a known issue. The pace of Hy's development is currently outpacing the ability of the supporting libs to keep up (we are a small dev team and the focus is stabilizing the language right now). If you'd like to use Jedhy the current stable release of Hy |
Beta Was this translation helpful? Give feedback.
-
I’m trying to configure Within my Error: Is this an issue with mangling or use of delimiters? Also, is there a default start-up file that hy uses or is the best way to set the environmental variable If I am reading the documentation properly, it does look like I can set Finally, is it possible to dynamically reset Appreciate the help. Looking to really start playing around with the language once I understand how to use it properly within emacs. Thanks |
Beta Was this translation helpful? Give feedback.
Hello! Yes this is a known issue. The pace of Hy's development is currently outpacing the ability of the supporting libs to keep up (we are a small dev team and the focus is stabilizing the language right now). If you'd like to use Jedhy the current stable release of Hy
0.20.0
is the most widely supported version (which is what you'd get if you did a normalpip install hy
) We're currently on an alpha cycle and once Hy has settled down and we've ironed out the last breaking changes we'll pivot to bringing everything up to date. If you'd like to use the latest alpha releases of Hy you will need to turn Jedhy off in hy-mode.el with(setq hy-jedhy--enable? nil)
. Hopefully that answers you're …