py-vterm-interaction.el/README.org

15 lines
969 B
Org Mode
Raw Normal View History

2020-10-04 14:57:18 +09:00
# -*- eval: (visual-line-mode 1) -*-
#+STARTUP: showall
* julia-repl-vterm-mode.el
2020-10-04 18:06:47 +09:00
The julia-repl-vterm-mode.el provides a major-mode for inferior [[https://julialang.org/][Julia]] process that runs in [[https://github.com/akermu/emacs-libvterm][vterm]], and a minor-mode that extends [[https://github.com/JuliaEditorSupport/julia-emacs][julia-mode]] for interaction with the inferior Julia process.
2020-10-04 14:57:18 +09:00
** Why?
2020-10-04 18:06:47 +09:00
There's already [[https://github.com/tpapp/julia-repl][julia-repl]]. It works well in most cases, but I sometimes encountered small problems when I handle very large DataFrame, which seemed to be caused by the limited performance of term.el. I wrote this simple REPL mode using vterm and found the performance problems were resolved.
2020-10-04 14:57:18 +09:00
** Should I use this?
2020-10-04 18:06:47 +09:00
This code was made for my personal use. It has only the minimum functions that I need. I recommend any general users to use julia-repl instead. The julia-repl seems also going to support vterm soon.