From: Daniel Hahler Date: Fri, 27 Feb 2015 17:58:12 +0000 (+0100) Subject: minor style: fix indenting for multiline statement X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/6f85af5950609898971f01876f57bf35654fe973?hp=c9d252f33d858267818d1354af81d264b276a4b7 minor style: fix indenting for multiline statement --- diff --git a/indent/python.vim b/indent/python.vim index 461e30c..e8f484b 100644 --- a/indent/python.vim +++ b/indent/python.vim @@ -34,21 +34,21 @@ setlocal shiftwidth=4 let s:maxoff = 50 let s:block_rules = { - \ '^\s*elif\>': ['if', 'elif'], - \ '^\s*else\>': ['if', 'elif', 'for', 'try', 'except'], - \ '^\s*except\>': ['try', 'except'], - \ '^\s*finally\>': ['try', 'except', 'else'] - \ } + \ '^\s*elif\>': ['if', 'elif'], + \ '^\s*else\>': ['if', 'elif', 'for', 'try', 'except'], + \ '^\s*except\>': ['try', 'except'], + \ '^\s*finally\>': ['try', 'except', 'else'] + \ } let s:paren_pairs = ['()', '{}', '[]'] let s:control_statement = '^\s*\(if\|while\|with\|for\|except\)\>' let s:stop_statement = '^\s*\(break\|continue\|raise\|return\|pass\)\>' " Skip strings and comments let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' . - \ '=~? "string\\|comment"' + \ '=~? "string\\|comment"' let s:skip_search = 'synIDattr(synID(line("."), col("."), 0), "name") ' . - \ '=~? "comment"' + \ '=~? "comment"' " compatibility with vim patch 7.3.629: 'sw' can be set to -1 to follow 'ts' if exists('*shiftwidth')