mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-07 12:47:30 -05:00
Add: org: +ipython
Add: packages
This commit is contained in:
46
modules/lang/org/+ipython.el
Normal file
46
modules/lang/org/+ipython.el
Normal file
@ -0,0 +1,46 @@
|
||||
;;; lang/org/+ipython.el -*- lexical-binding: t; -*-
|
||||
(defvar +org-ob-ipython-resources-dir ".ob-ipython-resrc")
|
||||
(defvar +ob-ipython-local-runtime-dir
|
||||
(substring (shell-command-to-string (concat "jupyter --runtime-dir")) 0 -1))
|
||||
(def-package! ob-ipython
|
||||
:when (featurep! +ipython)
|
||||
:after (ob)
|
||||
:config
|
||||
(setq ob-ipython-resources-dir +org-ob-ipython-resources-dir)
|
||||
;; popup
|
||||
(set!
|
||||
:popup "^\\*Org Src"
|
||||
'((size . 100)
|
||||
(side . right)
|
||||
(slot . -1)
|
||||
(window-height . 0.6))
|
||||
'((quit)
|
||||
(select . t)
|
||||
(modeline)))
|
||||
(set!
|
||||
:popup "^\\*Python"
|
||||
'((slot . 0)
|
||||
(side . right)
|
||||
(size . 100))
|
||||
'((select) (quit) (transient)))
|
||||
(set!
|
||||
:popup "\\*ob-ipython.*"
|
||||
'((slot . 2)
|
||||
(side . right)
|
||||
(size . 100)
|
||||
(window-height . 0.2))
|
||||
'((select) (quit) (transient)))
|
||||
(set!
|
||||
:popup "\\*Python:.*"
|
||||
'((slot . 0)
|
||||
(side . right)
|
||||
(size . 100))
|
||||
'((select) (quit) (transient)))
|
||||
;; advices for remote kernel and org-src-edit
|
||||
(advice-add 'org-babel-edit-prep:ipython :override #'+org*org-babel-edit-prep:ipython)
|
||||
(advice-add 'org-babel-ipython-initiate-session :override #'+org*org-babel-ipython-initiate-session)
|
||||
(advice-add 'ob-ipython--create-repl :override #'+org*ob-ipython--create-repl)
|
||||
(advice-add 'org-babel-execute:ipython :override #'+org*org-babel-execute:ipython)
|
||||
;; retina resolution image hack
|
||||
(when (eq window-system 'ns)
|
||||
(advice-add 'ob-ipython--write-base64-string :around #'+org*ob-ipython--write-base64-string)))
|
Reference in New Issue
Block a user