-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cannot autoload julia-snail #75
Comments
How large is the |
Is |
That's still an |
There's nothing attached to your message. |
That's the installation directory. I want to see the files inside it, specifically the |
Your installation looks good. Can you post the values of |
holy shit, this code works ! (use-package julia-mode
:hook (julia-mode . julia-snail-mode)
:config
(setq julia-repl-switches nil
julia-snail-extra-args nil
julia-indent-offset 2)
:commands julia-snail-mode) I think I have took you too much time |
Very interesting. You're the second person to report this problem and this exact workaround (see #70). For completeness and so I can look into this later, what version of Emacs are you using? What OS? Do you have native compilation enabled? |
maybe we are not so familiar with emacs-lisp, I think the major mode once loaded, so that its hook can be called. |
What we don't understand is It looks like this bug occurs because of I'll update the Snail README and remove |
@gcv hey I think I found the problem, using this code (use-package julia-snail
:ensure t
:after julia-mode
:requires vterm
:config
(setq-default julia-snail-extra-args "--sysimage /home/steiner/.julia-images/julia-dev.so")
(setq julia-snail-executable "/usr/local/bin/julia")) and I found that when load julia file, watching the local varibale and the |
how about trying this code, and check the local buffer variable, you will find out |
You need to remove |
maybe is the problem of my program ability on
emacs-lisp
, when I type this code,julia-snail
can't autoload when loading a julia fileI remember that it was ok, after i use byte compile emacs-lisp file, it does not work since then
The text was updated successfully, but these errors were encountered: