emacs-crystal-mode
emacs-crystal-mode copied to clipboard
Won't this be updated anymore?
I love emacs and crystal. I really disappointed when I knew this repository is not updated recently since there are still bugs especially when I write macros.
Here is a wrong indenting pattern which I faced.
{% if ok = true %}
{{ok}} # should be indented
{% end %}
{% if true %}
func0
{% else %}
func1 # should be indented
{% end %}
{% if true %}
{% end %}
{% if true %} # wrong indenting
{% end %}
It seems that @dotmilk and @TechMagister are still developing in forked repository. But the bugs above are still remaining.
Have anyone solved this bugs? (The lisp syntax is not readable for me...)
Well, I suppose you could fork the code and make improvements. After all, that part of what github is about.
I will struggle with the elisp.
That's the spirit!
@tbrand I found a way to fix it, but elisp is not my favorite language, so give me feedback if you find some bugs :)
Thanks a lot @TechMagister !!:tada: I will use it!
This works very fine! Thanks again! :)
I think a problem here is everyone forking stuff and working independently. Merging upstream isn't working so we need to agree on another collective upstream. https://github.com/dotmilk/emacs-crystal-mode seems like a good candidate.
Good idea ! @dotmilk what do you think ?
Agree! Additionally, may be the repository should be detached from the original. Because we cannot post issues and PRs to forked repository.
@tbrand You can turn on issues for a fork, and you can always send PRs.
I have turned on issues on my fork
Make sure to watch @dotmilk's repo if you're interested in fixing bugs.
I got it! Thanks for all!