Skip to content
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

julia-mode.el: Add the ability to start a REPL from inside Emacs #8715

Closed
Wilfred opened this issue Oct 17, 2014 · 5 comments
Closed

julia-mode.el: Add the ability to start a REPL from inside Emacs #8715

Wilfred opened this issue Oct 17, 2014 · 5 comments

Comments

@Wilfred
Copy link
Contributor

Wilfred commented Oct 17, 2014

It need not be very sophisticated, and I'm not sure how we'll integrate the shell and help features, but basic functionality would be much better than nothing.

@PythonNut
Copy link
Contributor

This is what I use

(add-hook 'julia-mode-hook
  '(lambda ()
     (require 'comint)

     (defun my-julia-compile ()
       "Use compile to run julia programs"
       (interactive)
       (compile (concat "julia -L " (buffer-file-name)) t))

     (setq compilation-scroll-output t)
     (global-set-key (kbd "<f5>") 'my-julia-compile)))

Can be pretty trivially modified into a REPL.

@dfannius
Copy link
Contributor

dfannius commented Oct 7, 2015

I haven't tried julia-shell-mode yet, but it looks promising.

@PythonNut
Copy link
Contributor

Hm... Perhaps it can be merged into the official emacs package?

@tkelman
Copy link
Contributor

tkelman commented Oct 7, 2015

It's GPL and borrows code from the GPL Matlab-emacs, so not unless it were clean-room reimplemented or julia-mode moved to a separate repository.

@yuyichao
Copy link
Contributor

Moved to JuliaEditorSupport/julia-emacs#1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants