I've looked at python-mode and python.el. I'm using python-mode.el. I'm also using rope and ropemacs. I'm looking either for some documentation on these that helps me, or another elisp package or something.

My current problem is that the code I'm given has inconsistent indentation sizes. For some blocks it will be two, for some it will be 4. I want to clean this up, but For some reason, when I tell emacs "fix indentation" it just hits tab on every line basically, which screws up the code. What I want is to keep the same relative indentation, but standardize on 4 spaces. Will anything let me do this easily?

I suppose I could find each instance of bad indentation, block it, and query-replace 2 spaces with 4 spaces. But that relies a bit too much on my precision, noticing where this should be done. Also, it's a lot of code.

Someone told me that bicycle repairman would solve this, but that's been out of developement for several years now... Any other suggestions?

thanks.

link|improve this question

63% accept rate
3  
Not really an emacs answer, but you might be interested in this answer by Alex Martelli. – Sven Marnach Feb 4 '11 at 21:05
Thanks! that at least solves one problem! – Brian Postow Feb 4 '11 at 21:29
feedback

2 Answers

Assuming you've used Sven Marnach's comment to clean up the code base, I'm guessing you just need to make python-mode.el use the indentation style that you prefer?

Look at the variables py-indent-offset, and py-smart-indentation (and perhaps also py-continuation-offset and py-honor-comment-indentation). As well as the normal indent-tabs-mode.

You can either Customize them (M-x customize-group RET python RET), or add a custom function to python-mode-hook. e.g.:

(add-hook 'python-mode-hook 'my-python-mode-hook)
(defun my-python-mode-hook ()
  (setq indent-tabs-mode nil
        py-smart-indentation nil
        py-indent-offset 4))
link|improve this answer
yeah, I think that 4 is the default, and that's what I want. It's more a matter of using Sven's suggestion and having some tools to move blocks of code around more easily... – Brian Postow Feb 7 '11 at 14:32
feedback
(custom-set-variables
   ...
   '(indent-tabs-mode nil)
   '(tab-stop-list (quote (4 8 16 24 32 40 48 56 64 72 80 88 96 104 112 120)))
   '(tab-width 4))

Obviously these are global settings for modes that honor them (which python-mode does). I didn't fudge around with python-mode's indentation settings at all.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.