Perhaps I misunderstand what smart indent is. When I type:

urlpatterns = patterns('some_model.views',

after pressing enter, would the next line not be a place one would expect a "smart indent"? As it is now, the caret is placed without any indentation at all.

link|improve this question

feedback

2 Answers

The smart indent happens when you've provided the closing parenthesis, i.e.

urlpatterns = patterns('some_model.views', 
)
# if you press 'enter' after the comma, the newline will be indented.

That being said, if you're using autocomplete normally you should get patterns() with the both parenthesis automatically. The caret will be inside the parenthesis thus giving you the "smart indent" by default when you press enter.

Note that this is also the case when you work with dictionaries or lists in python. The auto-indent will not activate unless you also have the closing } or ] for your dictionary/list respectively.

link|improve this answer
This is odd, because I do have autocomplete on and I'm not getting smart indent in the above scenario. This works in your setup? – wiener_patrol Oct 24 '11 at 17:47
Do you have smart indent enabled in your settings? Go into settings --> Editor --> Smart Keys. See if the checkbox for smart indent is checked. – Derek Kwok Oct 25 '11 at 0:55
Uh, yes, I have it enabled... – wiener_patrol Oct 25 '11 at 1:39
feedback
up vote -1 down vote accepted

I suppose the answer would have to be that the smart indent is inconsistent at this point.

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.