Questions tagged [elpy]

Elpy is an Emacs package to bring powerful Python editing to Emacs. It combines a number of other packages, both written in Emacs Lisp as well as Python.

Elpy is an package to bring powerful editing to Emacs. It combines a number of other packages, both written in Emacs as well as Python.

Resources:

64 questions
0
votes
1 answer

(elpy-enable) fails with "Symbol's function definition is void: format-message"

I'm trying to try out elpy and have the following lines in my ~/.emacs.d/init.el: (add-to-list 'package-archives '("elpy" . "http://jorgenschaefer.github.io/packages/")) (package-initialize) (defvar my-packages '(elpy)) (dolist (p my-packages) …
lsankar4033
  • 509
  • 3
  • 14
0
votes
1 answer

Emacs elpy doesn't find pyflakes package

I'm reinstalling emacs24 on a remote server and can't seem to replicate my personal configuration and get it running. I've installed the following pip packages using pip install --user (I don't have root on the server): jedi, flake8, autopep8, rope,…
ShaharA
  • 860
  • 8
  • 19
0
votes
1 answer

emacs indentation face in command line

I'm editing python code using emacs, elpy and magit. When starting emacs using the -nw option (from bash and gnome-terminal in gnome 3). When started this way, emacs highlight the indented blocks of code using a black background single character;…
Lorenzo Trojan
  • 117
  • 1
  • 9
0
votes
1 answer

Emacs - Python completion in inferior shell with partially typed command

A feature that I tend to use quite often in the ipython shell is auto-completion of partially typed command from the history. At the repl, one can type only the first few letters of the command and hit the up to find in the command history the last…
Lorenzo Trojan
  • 117
  • 1
  • 9
1 2 3 4
5