Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
993 views

How to control indentation after an open parenthesis in Emacs

When I use emacs python-mode, if the last character of a line is an open parenthesis it indents the next line just one step in from the indentation of the previous line. call_some_function( ...
4
votes
3answers
528 views

Turning on linum-mode when in python/c mode

I want to turn on linum mode (M-x linum-mode) automatically with python and c mode. I add the following code in .emacs, but it doesn't seem to work. (defun my-c-mode-common-hook () ...
3
votes
1answer
270 views

Emacs: How to start Local python interpreter when editing a remote python file via tramp

On Emacs, when I start python with C-c ! while editing a remote python file (using tramp - plinkx: on windows), the python interpreter is started on the remote host. Is there any way I can edit ...
2
votes
2answers
63 views

emacs python-mode python/ipython: multiple instances of python-shell?

Is there a way to force a new instance of python-shell while running emacs? It would be convenient when working on multiple projects with separate working directories (and different sets of modules). ...
2
votes
1answer
154 views

Setting up emacs with autocomplete, python-mode, and rope

I have all of the above installed. Rope seems to work just fine but I get the error below when I try to run auto-complete: Symbol's function definition is void: rope-completions I can't figure this ...
2
votes
0answers
108 views

How do I advise py-execute-buffer in emacs to run py-shell before the function?

I'd like to be editing a buffer or file, hit C-c C-c and have the file sent to an IPython session. I can accomplish this now if I first run M-x py-shell before running py-execute-buffer via C-c C-c. ...
2
votes
1answer
231 views

How can I access directory-local variables in my major mode hooks?

I have defined a .dir-locals.el file with the following content: ((python-mode . ((cr/virtualenv-name . "saas")))) In my .emacs I have the following function to retrieve this value and provide a ...
2
votes
3answers
193 views

Update version of Python in Emacs 22.2.1

I've recently install Python 3.1, but Emacs still uses 2.6.5. I'm using Emacs version 22.2.1. I'm not sure which files to edit in order to make Emacs use Python 3.1 by default! I'm using ...
2
votes
3answers
2k views

Set python indent to 2 spaces in emacs 23?

I am using emacs 23.1.1 on Ubuntu 10.04. I wish to program in Python with a 2-space indent. emacs looks to have a default mode for python (python.el?). I put the following in my .emacs: ;; Only ...
2
votes
2answers
516 views

emacs windows run python program in current buffer and display the output on output window

I use the Python-mode (not the default one comes with emacs 23). I could not execute the python program currently loaded in emacs. I am getting "Symbol's function definition is void: ...
1
vote
1answer
51 views

emacs python-mode: designate which python shell to send commands to

A follow up on this question - if I have two python shells running in emacs, how can I designate which shell commands from each python script buffer is sent to? I suspect it has something to do with ...
1
vote
1answer
135 views

py-python-command ignored

I'm using python-mode 6.0.1 on OS X, emacs 23.3 (http://emacsformacosx.com/ version). I'm trying to get C-c C-c to default to python 3. I have the following in my .emacs: (setq py-python-command ...
1
vote
2answers
112 views

using emacs-mode.el to execute with arguments

I'm writing a script that takes arguments, and I'd like to use emacs-model.el's C-c C-c to execute it while I'm writing it. But this merely runs the script without arguments, which then causes my ...
1
vote
1answer
128 views

Determine path to source code of current mode in Emacs 23

I'm trying out a new Python mode for Emacs 23, but I'm not sure how to tell if I'm using the new mode (source code located at ~/.elisp/python.el) or the bundled python.el mode. Is there a way to find ...
1
vote
1answer
155 views

Proper indendation with backslash line continuations in python-mode.el

I like to use python-mode.el and (gnu) emacs for editing my python files. If I use parentheses for multiline continuations, indentation works as I expect. For example, foo_long_long_long_long = ( ...
0
votes
1answer
30 views

Remap inferior-python-mode C-z key to python quit rather than emacs suspend or undo

So here's a technical question on how to exit from the current job of the inferior-python interpreter. Normally, C-z does the trick if I run the interpreter in a regular command shell. This calls ...
0
votes
1answer
171 views

Problem with python-mode.el install

I just installed python-mode.el (6.0.1) and when I start up Emacs.app it gives me the following error: File error: Cannot open load file, highlight-indentation Are there dependencies for ...
0
votes
1answer
83 views

making python interpreter open in same window

Maybe I'm being irrational but I really really hate it when a command opens a new window in emacs. I'm using emacs on Ubuntu which came with python-mode and when I start an interpreter with C-c ! it ...
0
votes
1answer
54 views

Tabbing comments in emacs py-mode?

I'm using python-mode.el, and when I try to indent comments, it always wants to put them all the way to the left. I want them indented in line with the rest of the code. Is there an easy way to ...