mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Load tramp after ob-jupyter
To prevent a void-function tramp-tramp-file-p error due to an oversight upstream. i.e. jupyter-tramp-file-name-p is inlined at compile time in ob-jupyter.el, which calls tramp-tramp-file-p but doesn't load tramp, resulting in the missing function error.
This commit is contained in:
@ -24,4 +24,6 @@
|
|||||||
(add-to-list 'org-src-lang-modes (cons lang-name (intern lang-tail)))))
|
(add-to-list 'org-src-lang-modes (cons lang-name (intern lang-tail)))))
|
||||||
(with-demoted-errors "Jupyter: %s"
|
(with-demoted-errors "Jupyter: %s"
|
||||||
(require lang nil t)
|
(require lang nil t)
|
||||||
(require 'ob-jupyter nil t))))))
|
(require 'ob-jupyter nil t)))))
|
||||||
|
:config
|
||||||
|
(require 'tramp))
|
||||||
|
Reference in New Issue
Block a user