All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 " PEP8 compatible Python indent file
3 " Maintainer: Daniel Hahler <https://daniel.hahler.de/>
4 " Prev Maintainer: Hynek Schlawack <hs@ox.cx>
5 " Prev Maintainer: Eric Mc Sween <em@tomcom.de> (address invalid)
6 " Original Author: David Bustos <bustos@caltech.edu> (address invalid)
9 " vim-python-pep8-indent - A nicer Python indentation style for vim.
10 " Written in 2004 by David Bustos <bustos@caltech.edu>
11 " Maintained from 2004-2005 by Eric Mc Sween <em@tomcom.de>
12 " Maintained from 2013 by Hynek Schlawack <hs@ox.cx>
13 " Maintained from 2017 by Daniel Hahler <https://daniel.hahler.de/>
15 " To the extent possible under law, the author(s) have dedicated all copyright
16 " and related and neighboring rights to this software to the public domain
17 " worldwide. This software is distributed without any warranty.
18 " You should have received a copy of the CC0 Public Domain Dedication along
19 " with this software. If not, see
20 " <http://creativecommons.org/publicdomain/zero/1.0/>.
22 " Only load this indent file when no other was loaded.
23 if exists('b:did_indent')
30 setlocal indentexpr=GetPythonPEPIndent(v:lnum)
31 setlocal indentkeys=!^F,o,O,<:>,0),0],0},=elif,=except
33 if !exists('g:python_pep8_indent_multiline_string')
34 let g:python_pep8_indent_multiline_string = 0
39 \ '^\s*elif\>': ['if', 'elif'],
40 \ '^\s*except\>': ['try', 'except'],
41 \ '^\s*finally\>': ['try', 'except', 'else']
43 let s:block_rules_multiple = {
44 \ '^\s*else\>': ['if', 'elif', 'for', 'try', 'except'],
46 let s:paren_pairs = ['()', '{}', '[]']
47 if &filetype ==# 'pyrex' || &filetype ==# 'cython'
48 let b:control_statement = '\v^\s*(class|def|if|while|with|for|except|cdef|cpdef)>'
50 let b:control_statement = '\v^\s*(class|def|if|while|with|for|except)>'
52 let s:stop_statement = '^\s*\(break\|continue\|raise\|return\|pass\)\>'
54 " Skip strings and comments. Return 1 for chars to skip.
55 " jedi* refers to syntax definitions from jedi-vim for call signatures, which
56 " are inserted temporarily into the buffer.
57 let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
58 \ '=~? "\\vstring|comment|jedi\\S"'
60 let s:skip_after_opening_paren = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
61 \ '=~? "\\vcomment|jedi\\S"'
63 " Also ignore anything concealed.
64 " Wrapper around synconcealed for older Vim (7.3.429, used on Travis CI).
65 function! s:is_concealed(line, col)
66 let concealed = synconcealed(a:line, a:col)
67 return len(concealed) && concealed[0]
70 let s:skip_special_chars .= '|| s:is_concealed(line("."), col("."))'
74 let s:skip_search = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
77 " Use 'shiftwidth()' instead of '&sw'.
78 " (Since Vim patch 7.3.629, 'shiftwidth' can be set to 0 to follow 'tabstop').
79 if exists('*shiftwidth')
89 function! s:pair_sort(x, y)
91 return a:x[1] == a:y[1] ? 0 : a:x[1] > a:y[1] ? 1 : -1
93 return a:x[0] > a:y[0] ? 1 : -1
97 " Find backwards the closest open parenthesis/bracket/brace.
98 function! s:find_opening_paren(...)
99 " optional arguments: line and column (defaults to 1) to search around
101 let view = winsaveview()
102 call cursor(a:1, a:0 > 1 ? a:2 : 1)
103 let ret = s:find_opening_paren()
104 call winrestview(view)
108 let stopline = max([0, line('.') - s:maxoff])
110 " Return if cursor is in a comment.
111 exe 'if' s:skip_search '| return [0, 0] | endif'
114 for p in s:paren_pairs
115 call add(positions, searchpairpos(
116 \ '\V'.p[0], '', '\V'.p[1], 'bnW', s:skip_special_chars, stopline))
119 " Remove empty matches and return the type with the closest match
120 call filter(positions, 'v:val[0]')
121 call sort(positions, 's:pair_sort')
123 return get(positions, -1, [0, 0])
126 " Find the start of a multi-line statement
127 function! s:find_start_of_multiline_statement(lnum)
130 if getline(lnum - 1) =~# '\\$'
131 let lnum = prevnonblank(lnum - 1)
133 let [paren_lnum, _] = s:find_opening_paren(lnum)
137 let lnum = paren_lnum
143 " Find possible indent(s) of the block starter that matches the current line.
144 function! s:find_start_of_block(lnum, types, multiple)
146 let types = copy(a:types)
147 let re = '\V\^\s\*\('.join(a:types, '\|').'\)\>'
149 let last_indent = indent(lnum) + 1
150 while lnum > 0 && last_indent > 0
151 let indent = indent(lnum)
152 if indent < last_indent
154 let re = '\v^\s*'.type.'>'
155 if getline(lnum) =~# re
159 if index(r, indent) == -1
162 " Remove any handled type, e.g. 'if'.
163 call remove(types, index(types, type))
166 let last_indent = indent(lnum)
168 let lnum = prevnonblank(lnum - 1)
173 " Is "expr" true for every position in "lnum", beginning at "start"?
174 " (optionally up to a:1 / 4th argument)
175 function! s:match_expr_on_line(expr, lnum, start, ...)
176 let text = getline(a:lnum)
177 let end = a:0 ? a:1 : len(text)
181 let save_pos = getpos('.')
183 for i in range(a:start, end)
184 call cursor(a:lnum, i)
185 if !(eval(a:expr) || text[i-1] =~# '\s')
190 call setpos('.', save_pos)
194 " Line up with open parenthesis/bracket/brace.
195 function! s:indent_like_opening_paren(lnum)
196 let [paren_lnum, paren_col] = s:find_opening_paren(a:lnum)
200 let text = getline(paren_lnum)
201 let base = indent(paren_lnum)
203 let nothing_after_opening_paren = s:match_expr_on_line(
204 \ s:skip_after_opening_paren, paren_lnum, paren_col+1)
205 let starts_with_closing_paren = getline(a:lnum) =~# '^\s*[])}]'
207 if nothing_after_opening_paren
208 if starts_with_closing_paren
211 let res = base + s:sw()
214 " Indent to match position of opening paren.
218 " If this line is the continuation of a control statement
219 " indent further to distinguish the continuation line
220 " from the next logical line.
221 if text =~# b:control_statement && res == base + s:sw()
222 return base + s:sw() * 2
228 " Match indent of first block of this type.
229 function! s:indent_like_block(lnum)
230 let text = getline(a:lnum)
231 for [multiple, block_rules] in [
232 \ [0, s:block_rules],
233 \ [1, s:block_rules_multiple]]
234 for [line_re, blocks] in items(block_rules)
239 let indents = s:find_start_of_block(a:lnum - 1, blocks, multiple)
247 " Multiple valid indents, e.g. for 'else' with both try and if.
248 let indent = indent(a:lnum)
249 if index(indents, indent) != -1
250 " The indent is valid, keep it.
253 " Fallback to the first/nearest one.
260 function! s:indent_like_previous_line(lnum)
261 let lnum = prevnonblank(a:lnum - 1)
263 " No previous line, keep current indent.
268 let text = getline(lnum)
269 let start = s:find_start_of_multiline_statement(lnum)
270 let base = indent(start)
271 let current = indent(a:lnum)
273 " Jump to last character in previous line.
274 call cursor(lnum, len(text))
275 let ignore_last_char = eval(s:skip_special_chars)
277 " Search for final colon that is not inside something to be ignored.
279 let curpos = getpos('.')[2]
280 if curpos == 1 | break | endif
281 if eval(s:skip_special_chars) || text[curpos-1] =~# '\s'
284 elseif text[curpos-1] ==# ':'
290 if text =~# '\\$' && !ignore_last_char
291 " If this line is the continuation of a control statement
292 " indent further to distinguish the continuation line
293 " from the next logical line.
294 if getline(start) =~# b:control_statement
295 return base + s:sw() * 2
298 " Nest (other) explicit continuations only one level deeper.
302 let empty = getline(a:lnum) =~# '^\s*$'
304 " Current and prev line are empty, next is not -> indent like next.
305 if empty && a:lnum > 1 &&
306 \ (getline(a:lnum - 1) =~# '^\s*$') &&
307 \ !(getline(a:lnum + 1) =~# '^\s*$')
308 return indent(a:lnum + 1)
311 " If the previous statement was a stop-execution statement or a pass
312 if getline(start) =~# s:stop_statement
313 " Remove one level of indentation if the user hasn't already dedented
314 if empty || current > base - s:sw()
317 " Otherwise, trust the user
321 if !empty && s:is_dedented_already(current, base)
325 " In all other cases, line up with the start of the previous statement.
329 " If this line is dedented and the number of indent spaces is valid
330 " (multiple of the indentation size), trust the user.
331 function! s:is_dedented_already(current, base)
332 let dedent_size = a:current - a:base
333 return (dedent_size < 0 && a:current % s:sw() == 0) ? 1 : 0
336 " Is the syntax at lnum (and optionally cnum) a python string?
337 function! s:is_python_string(lnum, ...)
338 let line = getline(a:lnum)
339 let linelen = len(line)
343 let cols = a:0 ? type(a:1) != type([]) ? [a:1] : a:1 : range(1, linelen)
345 if match(map(synstack(a:lnum, cnum),
346 \ "synIDattr(v:val, 'name')"), 'python\S*String') == -1
353 function! GetPythonPEPIndent(lnum)
354 " First line has indent 0
359 let line = getline(a:lnum)
360 let prevline = getline(a:lnum-1)
362 " Multilinestrings: continous, docstring or starting.
363 if s:is_python_string(a:lnum-1, len(prevline))
364 \ && (s:is_python_string(a:lnum, 1)
365 \ || match(line, '^\%("""\|''''''\)') != -1)
367 " Indent closing quotes as the line with the opening ones.
368 let match_quotes = match(line, '^\s*\zs\%("""\|''''''\)')
369 if match_quotes != -1
370 " closing multiline string
371 let quotes = line[match_quotes:(match_quotes+2)]
372 let pairpos = searchpairpos(quotes, '', quotes, 'b')
374 return indent(pairpos[0])
376 " TODO: test to cover this!
380 if s:is_python_string(a:lnum-1)
381 " Previous line is (completely) a string.
382 return indent(a:lnum-1)
385 if match(prevline, '^\s*\%("""\|''''''\)') != -1
387 return indent(a:lnum-1)
390 let indent_multi = get(b:, 'python_pep8_indent_multiline_string',
391 \ get(g:, 'python_pep8_indent_multiline_string', 0))
392 if match(prevline, '\v%("""|'''''')$') != -1
393 " Opening multiline string, started in previous line.
394 if (&autoindent && indent(a:lnum) == indent(a:lnum-1))
395 \ || match(line, '\v^\s+$') != -1
396 " <CR> with empty line or to split up 'foo("""bar' into
397 " 'foo("""' and 'bar'.
398 if indent_multi == -2
399 return indent(a:lnum-1) + s:sw()
405 " Keep existing indent.
406 if match(line, '\v^\s*\S') != -1
410 if indent_multi != -2
414 return s:indent_like_opening_paren(a:lnum)
417 " Parens: If we can find an open parenthesis/bracket/brace, line up with it.
418 let indent = s:indent_like_opening_paren(a:lnum)
423 " Blocks: Match indent of first block of this type.
424 let indent = s:indent_like_block(a:lnum)
429 return s:indent_like_previous_line(a:lnum)