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
37 if !exists('g:python_pep8_indent_hang_closing')
38 let g:python_pep8_indent_hang_closing = 0
41 " TODO: check required patch for timeout argument, likely lower than 7.3.429 though.
42 if !exists('g:python_pep8_indent_searchpair_timeout')
43 if has('patch-8.0.1483')
44 let g:python_pep8_indent_searchpair_timeout = 150
46 let g:python_pep8_indent_searchpair_timeout = 0
51 \ '^\s*elif\>': ['if', 'elif'],
52 \ '^\s*except\>': ['try', 'except'],
53 \ '^\s*finally\>': ['try', 'except', 'else']
55 let s:block_rules_multiple = {
56 \ '^\s*else\>': ['if', 'elif', 'for', 'try', 'except'],
58 " Pairs to look for when searching for opening parenthesis.
59 " The value is the maximum offset in lines.
60 let s:paren_pairs = {'()': 50, '[]': 100, '{}': 1000}
62 if &filetype ==# 'pyrex' || &filetype ==# 'cython'
63 let b:control_statement = '\v^\s*(class|def|if|while|with|for|except|cdef|cpdef)>'
65 let b:control_statement = '\v^\s*(class|def|if|while|with|for|except)>'
67 let s:stop_statement = '^\s*\(break\|continue\|raise\|return\|pass\)\>'
69 " Skip strings and comments. Return 1 for chars to skip.
70 " jedi* refers to syntax definitions from jedi-vim for call signatures, which
71 " are inserted temporarily into the buffer.
72 let s:skip_special_chars = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
73 \ '=~? "\\vstring|comment|^pythonbytes%(contents)=$|jedi\\S"'
75 let s:skip_after_opening_paren = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
76 \ '=~? "\\vcomment|jedi\\S"'
78 " Also ignore anything concealed.
79 " Wrapper around synconcealed for older Vim (7.3.429, used on Travis CI).
80 function! s:is_concealed(line, col)
81 let concealed = synconcealed(a:line, a:col)
82 return len(concealed) && concealed[0]
85 let s:skip_special_chars .= '|| s:is_concealed(line("."), col("."))'
89 let s:skip_search = 'synIDattr(synID(line("."), col("."), 0), "name") ' .
92 " Use 'shiftwidth()' instead of '&sw'.
93 " (Since Vim patch 7.3.629, 'shiftwidth' can be set to 0 to follow 'tabstop').
94 if exists('*shiftwidth')
104 " Find backwards the closest open parenthesis/bracket/brace.
105 function! s:find_opening_paren(...)
106 " optional arguments: line and column (defaults to 1) to search around
108 let view = winsaveview()
109 call cursor(a:1, a:0 > 1 ? a:2 : 1)
110 let ret = s:find_opening_paren()
111 call winrestview(view)
115 " Return if cursor is in a comment.
116 exe 'if' s:skip_search '| return [0, 0] | endif'
119 for [p, maxoff] in items(s:paren_pairs)
120 let stopline = max([0, line('.') - maxoff, nearest[0]])
121 let next = searchpairpos(
122 \ '\V'.p[0], '', '\V'.p[1], 'bnW', s:skip_special_chars, stopline, g:python_pep8_indent_searchpair_timeout)
123 if next[0] && (next[0] > nearest[0] || (next[0] == nearest[0] && next[1] > nearest[1]))
130 " Find the start of a multi-line statement
131 function! s:find_start_of_multiline_statement(lnum)
134 if getline(lnum - 1) =~# '\\$'
135 let lnum = prevnonblank(lnum - 1)
137 let [paren_lnum, _] = s:find_opening_paren(lnum)
141 let lnum = paren_lnum
147 " Find possible indent(s) of the block starter that matches the current line.
148 function! s:find_start_of_block(lnum, types, multiple)
150 let re = '\V\^\s\*\('.join(a:types, '\|').'\)\>'
152 let last_indent = indent(lnum) + 1
153 while lnum > 0 && last_indent > 0
154 let indent = indent(lnum)
155 if indent < last_indent
156 if getline(lnum) =~# re
160 if index(r, indent) == -1
163 let last_indent = indent
166 let lnum = prevnonblank(lnum - 1)
171 " Is "expr" true for every position in "lnum", beginning at "start"?
172 " (optionally up to a:1 / 4th argument)
173 function! s:match_expr_on_line(expr, lnum, start, ...)
174 let text = getline(a:lnum)
175 let end = a:0 ? a:1 : len(text)
179 let save_pos = getpos('.')
181 for i in range(a:start, end)
182 call cursor(a:lnum, i)
183 if !(eval(a:expr) || text[i-1] =~# '\s')
188 call setpos('.', save_pos)
192 " Line up with open parenthesis/bracket/brace.
193 function! s:indent_like_opening_paren(lnum)
194 let [paren_lnum, paren_col] = s:find_opening_paren(a:lnum)
198 let text = getline(paren_lnum)
199 let base = indent(paren_lnum)
201 let nothing_after_opening_paren = s:match_expr_on_line(
202 \ s:skip_after_opening_paren, paren_lnum, paren_col+1)
203 let starts_with_closing_paren = getline(a:lnum) =~# '^\s*[])}]'
205 let hang_closing = get(b:, 'python_pep8_indent_hang_closing',
206 \ get(g:, 'python_pep8_indent_hang_closing', 0))
208 if nothing_after_opening_paren
209 if starts_with_closing_paren && !hang_closing
212 let res = base + s:sw()
215 " Indent to match position of opening paren.
219 " If this line is the continuation of a control statement
220 " indent further to distinguish the continuation line
221 " from the next logical line.
222 if text =~# b:control_statement && res == base + s:sw()
223 " But only if not inside parens itself (Flake's E127).
224 let [paren_lnum, _] = s:find_opening_paren(paren_lnum)
232 " Match indent of first block of this type.
233 function! s:indent_like_block(lnum)
234 let text = getline(a:lnum)
235 for [multiple, block_rules] in [
236 \ [0, s:block_rules],
237 \ [1, s:block_rules_multiple]]
238 for [line_re, blocks] in items(block_rules)
243 let indents = s:find_start_of_block(a:lnum - 1, blocks, multiple)
251 " Multiple valid indents, e.g. for 'else' with both try and if.
252 let indent = indent(a:lnum)
253 if index(indents, indent) != -1
254 " The indent is valid, keep it.
257 " Fallback to the first/nearest one.
264 function! s:indent_like_previous_line(lnum)
265 let lnum = prevnonblank(a:lnum - 1)
267 " No previous line, keep current indent.
272 let text = getline(lnum)
273 let start = s:find_start_of_multiline_statement(lnum)
274 let base = indent(start)
275 let current = indent(a:lnum)
277 " Jump to last character in previous line.
278 call cursor(lnum, len(text))
279 let ignore_last_char = eval(s:skip_special_chars)
281 " Search for final colon that is not inside something to be ignored.
283 let curpos = getpos('.')[2]
284 if curpos == 1 | break | endif
285 if eval(s:skip_special_chars) || text[curpos-1] =~# '\s'
288 elseif text[curpos-1] ==# ':'
294 if text =~# '\\$' && !ignore_last_char
295 " If this line is the continuation of a control statement
296 " indent further to distinguish the continuation line
297 " from the next logical line.
298 if getline(start) =~# b:control_statement
299 return base + s:sw() * 2
302 " Nest (other) explicit continuations only one level deeper.
306 let empty = getline(a:lnum) =~# '^\s*$'
308 " Current and prev line are empty, next is not -> indent like next.
309 if empty && a:lnum > 1 &&
310 \ (getline(a:lnum - 1) =~# '^\s*$') &&
311 \ !(getline(a:lnum + 1) =~# '^\s*$')
312 return indent(a:lnum + 1)
315 " If the previous statement was a stop-execution statement or a pass
316 if getline(start) =~# s:stop_statement
317 " Remove one level of indentation if the user hasn't already dedented
318 if empty || current > base - s:sw()
321 " Otherwise, trust the user
325 if !empty && s:is_dedented_already(current, base)
329 " In all other cases, line up with the start of the previous statement.
333 " If this line is dedented and the number of indent spaces is valid
334 " (multiple of the indentation size), trust the user.
335 function! s:is_dedented_already(current, base)
336 let dedent_size = a:current - a:base
337 return (dedent_size < 0 && a:current % s:sw() == 0) ? 1 : 0
340 " Is the syntax at lnum (and optionally cnum) a python string?
341 function! s:is_python_string(lnum, ...)
342 let line = getline(a:lnum)
344 let cols = type(a:1) != type([]) ? [a:1] : a:1
346 let cols = range(1, max([1, len(line)]))
349 if match(map(synstack(a:lnum, cnum),
350 \ "synIDattr(v:val, 'name')"), 'python\S*String') == -1
357 function! GetPythonPEPIndent(lnum)
358 " First line has indent 0
363 let line = getline(a:lnum)
364 let prevline = getline(a:lnum-1)
366 " Multilinestrings: continous, docstring or starting.
367 if s:is_python_string(a:lnum-1, max([1, len(prevline)]))
368 \ && (s:is_python_string(a:lnum, 1)
369 \ || match(line, '^\%("""\|''''''\)') != -1)
371 " Indent closing quotes as the line with the opening ones.
372 let match_quotes = match(line, '^\s*\zs\%("""\|''''''\)')
373 if match_quotes != -1
374 " closing multiline string
375 let quotes = line[match_quotes:(match_quotes+2)]
376 let pairpos = searchpairpos(quotes, '', quotes, 'b', 1, g:python_pep8_indent_searchpair_timeout)
378 return indent(pairpos[0])
380 " TODO: test to cover this!
384 if s:is_python_string(a:lnum-1)
385 " Previous line is (completely) a string: keep current indent.
389 if match(prevline, '^\s*\%("""\|''''''\)') != -1
391 return indent(a:lnum-1)
394 let indent_multi = get(b:, 'python_pep8_indent_multiline_string',
395 \ get(g:, 'python_pep8_indent_multiline_string', 0))
396 if match(prevline, '\v%("""|'''''')$') != -1
397 " Opening multiline string, started in previous line.
398 if (&autoindent && indent(a:lnum) == indent(a:lnum-1))
399 \ || match(line, '\v^\s+$') != -1
400 " <CR> with empty line or to split up 'foo("""bar' into
401 " 'foo("""' and 'bar'.
402 if indent_multi == -2
403 return indent(a:lnum-1) + s:sw()
409 " Keep existing indent.
410 if match(line, '\v^\s*\S') != -1
414 if indent_multi != -2
418 return s:indent_like_opening_paren(a:lnum)
421 " Parens: If we can find an open parenthesis/bracket/brace, line up with it.
422 let indent = s:indent_like_opening_paren(a:lnum)
427 " Blocks: Match indent of first block of this type.
428 let indent = s:indent_like_block(a:lnum)
433 return s:indent_like_previous_line(a:lnum)