Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

emacs 23 python.el auto-indent style -- can this be configured?

I have been using emacs 23 (python.el) for just over a month now and I'm unhappy with the default auto-indentation settings.

Currently, my Python files are auto-indented as follows:

x = a_function_with_dict_parameter({
                                   'test' : 'Here is a value',
                                   'second' : 'Another value',
                                   })
a_function_with_multiline_parameters(on='First', line='Line',
                                     now_on='Second', next_line='Line',
                                     next='Third', finally='Line')

I would prefer if I could set the auto-indentation settings so the same code could easily be formatted:

x = a_function_with_dict_parameter({
    'test' : 'Here is a value',
    'second' : 'Another value',
})
a_function_with_multiline_parameters(on='First', line='Line',
    now_on='Second', next_line='Line', next='Third', finally='Line')

It seems that the logic for how I'd like the auto-indentation to perform would be:

If the last character (non-comment/whitespace) of the previous line is a :, increase the indent-level by 1. Else, use the same indentation level.

But using that logic, TAB would need to actually increase the indent-level of the current line. (Currently, TAB only moves the line to the auto-indent level)

Does anyone know how I can modify emacs auto-indentation to achieve my desired style?

like image 554
brildum Avatar asked Feb 23 '11 17:02

brildum


1 Answers

You can try this peace of code :

(require 'python)

; indentation
(defadvice python-calculate-indentation (around outdent-closing-brackets)
  "Handle lines beginning with a closing bracket and indent them so that
  they line up with the line containing the corresponding opening bracket."
(save-excursion
  (beginning-of-line)
  (let ((syntax (syntax-ppss)))
    (if (and (not (eq 'string (syntax-ppss-context syntax)))
             (python-continuation-line-p)
             (cadr syntax)
             (skip-syntax-forward "-")
             (looking-at "\\s)"))
        (progn
          (forward-char 1)
          (ignore-errors (backward-sexp))
          (setq ad-return-value (current-indentation)))
      ad-do-it))))

(ad-activate 'python-calculate-indentation)

Now, a simple python dict like this :

a = {'foo': 'bar',
     'foobar': 'barfoo'
    }

becomes...

a = {'foo': 'bar',
     'foobar': 'barfoo'
}
like image 62
Sandro Munda Avatar answered Nov 11 '22 04:11

Sandro Munda