I use do auto indenting follow lines that begin with python keywords in Vim using this command.
autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,...
Is there a way to do a "smartoutdent" for keywords like return or break?
Thanks.