Настраивал emacs, как ide для python'а по
http://pedrokroger.com/2010/07/configuring-emacs-as-a-python-ide-2/
В питон-моде при C-c ! ipython валится с:
[TerminalIPythonApp] Unrecognized flag: '--colors'
~/.emacs:
(add-to-list 'load-path "~/.emacs.d/python-mode")
(add-to-list 'load-path "~/.emacs.d")
(setq py-python-command-args '( "--colors" "Linux"))
(require 'python-mode)
(require 'ipython)
(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)))
Как побороть?