mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
lang/python: fix ipython repl & change args type
+python-ipython-repl-args and +python-jupyter-repl-args are now lists, rather than strings.
This commit is contained in:
@ -3,11 +3,11 @@
|
||||
(defconst +python-mode-line-indicator '("" +python--version)
|
||||
"Format for the python version/env indicator in the mode-line.")
|
||||
|
||||
(defvar +python-ipython-repl-args "-i --simple-prompt --no-color-info"
|
||||
(defvar +python-ipython-repl-args '("-i" "--simple-prompt" "--no-color-info")
|
||||
"CLI arguments to initialize ipython with when `+python/open-ipython-repl' is
|
||||
called.")
|
||||
|
||||
(defvar +python-jupyter-repl-args "--simple-prompt"
|
||||
(defvar +python-jupyter-repl-args '("--simple-prompt")
|
||||
"CLI arguments to initialize 'jupiter console %s' with when
|
||||
`+python/open-ipython-repl' is called.")
|
||||
|
||||
|
Reference in New Issue
Block a user