Create minor mode for julia-repl
If a buffer gets created by e.g. julia-repl-send-line, that buffer doesn't have the julia-repl-mode minor mode defined here. Is that an oversight, or am I misunderstanding how emacs minor modes should work (very possible; I'm still quite emacs noobish)?
Ftr, I'm currently working around this by adding julia-repl-mode to julia-repl-hooks which seems less than ideal.
The julia-repl-mode is a minor mode for Julia source code files (.jl). julia-repl.el does not define a minor mode for the inferior buffer.
Would one be useful for you?
Ah. I see. Yes it would be, but thanks to julia-repl-hooks I can at least work around it.
Spacemacs keybinding config system works per-mode rather than per-buffer.
EDIT: turning the julia-repl function into a minor mode doesn't look like it'd be all that difficult. I may take a shot at a PR for such if I get time in the next few weeks.