emacs-ipython-notebook/doc/source/conf.el
Takafumi Arakaki 6fc408d85f Fix document build: load ein-shared-output
Load ein-shared-output explicitly as it is not loaded from
ein-notebook.el anymore.

Otherwise, I get:
WARNING: Keymap ein:shared-output-mode-map not found
2012-08-16 03:44:58 +02:00

17 lines
624 B
EmacsLisp

(add-to-list 'load-path "~/.emacs.d/el-get/ein/lisp/")
(add-to-list 'load-path "~/.emacs.d/el-get/websocket/")
(add-to-list 'load-path "~/.emacs.d/el-get/nxhtml/util/") ; mumamo
(add-to-list 'load-path "~/.emacs.d/el-get/auto-complete/")
(add-to-list 'load-path "~/.emacs.d/el-get/popup/") ; for auto-complete
(require 'ein-notebooklist)
(require 'ein-shared-output)
(require 'ein-mumamo)
(require 'ein-ac)
(require 'ein-connect)
(require 'ein-iexec)
(require 'ein-helm)
;; Load `wid-edit'. Otherwise the following error will be raised:
;; Symbol's function definition is void: widget-button-press
(require 'wid-edit)