Вот кусок из .emacs:
(require 'ipython)
(setq py-default-interpreter "ipython")
(setq py-python-command-args '("--pylab=qt" "--colors=LightBG"))
(global-set-key [C-tab] 'ipython-complete)
(require 'lambda-mode)
(add-hook 'python-mode-hook #'lambda-mode 1)
(setq lambda-symbol (string (make-char 'greek-iso8859-7 107)))
(require 'anything)
(require 'anything-ipython)
(when (require 'anything-show-completion nil t)
(use-anything-show-completion 'anything-ipython-complete
'(length initial-pattern)))
Проделал патчинг ipython.el как здесь.
В *Messanges* выводит это:
File mode specification error: (void-variable py-mode-map)
В *Python* это:
Traceback (most recent call last):
File "<string>", line 1, in <module>
NameError: name 'olors' is not defined
>>>
Комплит не работает.