Remove add-hook line and now julia-mode is not required

This commit is contained in:
Shigeaki Nishina 2020-10-09 11:48:47 +09:00
parent 11a8703e1c
commit c42ec3785d

View file

@ -6,7 +6,7 @@
;; Maintainer: Shigeaki Nishina
;; Created: March 11, 2020
;; URL: https://github.com/shg/julia-repl-vterm.el
;; Version: 0.7a
;; Version: 0.8
;; Keywords: languages, julia
;; This file is not part of GNU Emacs.
@ -30,7 +30,6 @@
;;; Code:
(require 'julia-mode)
(require 'vterm)
@ -184,8 +183,6 @@ already one with the process alive, just open it."
(,(kbd "C-c C-b") . julia-with-repl-vterm-send-buffer)
(,(kbd "C-<return>") . julia-with-repl-vterm-send-region-or-current-line)))
(add-hook 'julia-mode-hook (lambda () (julia-with-repl-vterm-mode 1)))
(provide 'julia-repl-vterm)
;;; julia-repl-vterm.el ends here