设置 init.el 文件以启动 python 解释器
set init.el file to start-up the python interpreter
在 ubuntu 16.04 emacs24 python3.5 上,我有一个简单的 init.el 文件如下:
;; Set what python
(setq elpy-rpc-python-command "python3.5")
(setq python-shell-interpreter "python3.5")
;; Set org mode
(eval-after-load "org"
'(org-babel-do-load-languages
'org-babel-load-languages
'((sh . t)
(python . t)
(emacs-lisp . t)
(ditaa . t)
))
)
;; split windows
;; layout definition
(defun my-startup-layout ()
(interactive)
(delete-other-windows)
(split-window-horizontally) ;; -> |
(next-multiframe-window)
(dired "~")
)
;; execute the layout
(my-startup-layout )
但是,我希望能够 运行 正确 window 默认情况下使用 python 解释器。
请问我该怎么做?
你可以在hook中调用run-python
,例如
(defun my-startup-layout ()
(delete-other-windows)
(split-window-horizontally)
(dired "~")
(run-python nil nil 'show))
(my-startup-layout)
在 ubuntu 16.04 emacs24 python3.5 上,我有一个简单的 init.el 文件如下:
;; Set what python
(setq elpy-rpc-python-command "python3.5")
(setq python-shell-interpreter "python3.5")
;; Set org mode
(eval-after-load "org"
'(org-babel-do-load-languages
'org-babel-load-languages
'((sh . t)
(python . t)
(emacs-lisp . t)
(ditaa . t)
))
)
;; split windows
;; layout definition
(defun my-startup-layout ()
(interactive)
(delete-other-windows)
(split-window-horizontally) ;; -> |
(next-multiframe-window)
(dired "~")
)
;; execute the layout
(my-startup-layout )
但是,我希望能够 运行 正确 window 默认情况下使用 python 解释器。
请问我该怎么做?
你可以在hook中调用run-python
,例如
(defun my-startup-layout ()
(delete-other-windows)
(split-window-horizontally)
(dired "~")
(run-python nil nil 'show))
(my-startup-layout)