diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-08-25 00:49:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 00:49:33 +0200 |
commit | d3cd79709b6491a5806c67ea52c19f244164954e (patch) | |
tree | 1b696646bf21a68d458038df567d9a2d9dbef349 /runtime/indent/testdir/python.in | |
parent | 6b9ff5491d4a15c7ec92d70a769b3cc35ea06da9 (diff) | |
download | rneovim-d3cd79709b6491a5806c67ea52c19f244164954e.tar.gz rneovim-d3cd79709b6491a5806c67ea52c19f244164954e.tar.bz2 rneovim-d3cd79709b6491a5806c67ea52c19f244164954e.zip |
vim-patch:fd999452adaf (#19929)
Update runtime files
https://github.com/vim/vim/commit/fd999452adaf529a30d78844b5fbee355943da29
Diffstat (limited to 'runtime/indent/testdir/python.in')
-rw-r--r-- | runtime/indent/testdir/python.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/runtime/indent/testdir/python.in b/runtime/indent/testdir/python.in index e6f05f22bc..57719ee430 100644 --- a/runtime/indent/testdir/python.in +++ b/runtime/indent/testdir/python.in @@ -1,6 +1,24 @@ # vim: set ft=python sw=4 et: # START_INDENT +dict = { +'a': 1, +'b': 2, +'c': 3, +} +# END_INDENT + +# START_INDENT +# INDENT_EXE let [g:python_indent.open_paren, g:python_indent.closed_paren_align_last_line] = ['shiftwidth()', v:false] +dict = { +'a': 1, +'b': 2, +'c': 3, +} +# END_INDENT + +# START_INDENT +# INDENT_EXE let g:python_indent.open_paren = 'shiftwidth() * 2' # INDENT_EXE syntax match pythonFoldMarkers /{{{\d*/ contained containedin=pythonComment # xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {{{1 |