diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-08-20 10:04:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 10:04:55 +0200 |
commit | 1cc4706e94489498b12c4844c1b3a2e9aa5cc921 (patch) | |
tree | a2517116d23cceed4ccb41c38c40573b3a7a6c85 /runtime/indent | |
parent | bffaf1e27e49c3dbbc0b59d023a0fd9243e254aa (diff) | |
download | rneovim-1cc4706e94489498b12c4844c1b3a2e9aa5cc921.tar.gz rneovim-1cc4706e94489498b12c4844c1b3a2e9aa5cc921.tar.bz2 rneovim-1cc4706e94489498b12c4844c1b3a2e9aa5cc921.zip |
vim-patch:e80086446cc2 (#19848)
* vim-patch:e80086446cc2
Update runtime files
https://github.com/vim/vim/commit/e80086446cc20856ed8359bc8dc87c4d430da4c8
Co-authored-by: Sean Dewar <seandewar@users.noreply.github.com>
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/testdir/html.in | 6 | ||||
-rw-r--r-- | runtime/indent/testdir/html.ok | 6 | ||||
-rw-r--r-- | runtime/indent/testdir/python.in | 14 | ||||
-rw-r--r-- | runtime/indent/testdir/python.ok | 14 |
4 files changed, 28 insertions, 12 deletions
diff --git a/runtime/indent/testdir/html.in b/runtime/indent/testdir/html.in index b62c67ddb2..4783a096d0 100644 --- a/runtime/indent/testdir/html.in +++ b/runtime/indent/testdir/html.in @@ -1,7 +1,7 @@ -" vim: set ft=html sw=4 ts=8 : +% vim: set ft=html sw=4 ts=8 : -" START_INDENT +% START_INDENT <html> <body> <style> @@ -50,7 +50,7 @@ text </body> </html> -" END_INDENT +% END_INDENT % START_INDENT % INDENT_EXE let g:html_indent_style1 = "inc" diff --git a/runtime/indent/testdir/html.ok b/runtime/indent/testdir/html.ok index 938e965d8c..4963634465 100644 --- a/runtime/indent/testdir/html.ok +++ b/runtime/indent/testdir/html.ok @@ -1,7 +1,7 @@ -" vim: set ft=html sw=4 ts=8 : +% vim: set ft=html sw=4 ts=8 : -" START_INDENT +% START_INDENT <html> <body> <style> @@ -50,7 +50,7 @@ div#d2 { color: green; } </body> </html> -" END_INDENT +% END_INDENT % START_INDENT % INDENT_EXE let g:html_indent_style1 = "inc" diff --git a/runtime/indent/testdir/python.in b/runtime/indent/testdir/python.in index 868a63622b..e6f05f22bc 100644 --- a/runtime/indent/testdir/python.in +++ b/runtime/indent/testdir/python.in @@ -1,6 +1,14 @@ -" vim: set ft=python sw=4 et: +# vim: set ft=python sw=4 et: -" START_INDENT +# START_INDENT +# INDENT_EXE syntax match pythonFoldMarkers /{{{\d*/ contained containedin=pythonComment +# xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {{{1 + +if True: +pass +# END_INDENT + +# START_INDENT open_paren_not_at_EOL(100, (200, 300), @@ -65,4 +73,4 @@ open_paren_not_at_EOL(100, open_paren_at_EOL( 100, 200, 300, 400) -" END_INDENT +# END_INDENT diff --git a/runtime/indent/testdir/python.ok b/runtime/indent/testdir/python.ok index c0c08af4b9..df3de8f186 100644 --- a/runtime/indent/testdir/python.ok +++ b/runtime/indent/testdir/python.ok @@ -1,6 +1,14 @@ -" vim: set ft=python sw=4 et: +# vim: set ft=python sw=4 et: -" START_INDENT +# START_INDENT +# INDENT_EXE syntax match pythonFoldMarkers /{{{\d*/ contained containedin=pythonComment +# xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {{{1 + +if True: + pass +# END_INDENT + +# START_INDENT open_paren_not_at_EOL(100, (200, 300), @@ -65,4 +73,4 @@ open_paren_not_at_EOL(100, open_paren_at_EOL( 100, 200, 300, 400) -" END_INDENT +# END_INDENT |