-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Added inferior-julia comint mode #10389
Conversation
make-comint-in-buffer instead of calling function directly
I have also changed the input mode for the Julia buffer to TeX, so it can now do TeX formatting. |
cc @Wilfred |
;; Code for `inferior-julia-mode' | ||
(require 'comint) | ||
|
||
(defvar julia-file-path "/usr/bin/julia" "Path to the program used by `inferior-julia'.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might be nicer to use defcustom
here, what do you think? I'd also suggest just using "julia"
rather than hard-coding the path.
Thanks, this is really good! Left a few minor comments, let me know what you think/whether they make sense :). |
I like the suggestions. I enabled |
It's still probably worth adding an autoload cookie so users can call Anyway, this is really good thing to have in julia-mode.el 👍 |
Okay, the autoload cookie has been added |
Does everything look good? |
@Wilfred I'm merging since it looks like this addresses your comments. Feel free to follow up if I've ruined everything. |
Marvellous, I was about to ask you to merge it. Thanks :) |
I added a comint-mode for julia. Now, one can run the Julia interpreter in Emacs with
M-x inferior-julia