diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-01 23:21:50 -0400 |
|---|---|---|
| committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-05-01 23:47:11 -0400 |
| commit | 2081504a331f2ca97922056f6b42b8d0e6c2e306 (patch) | |
| tree | 49017e3dac80477d29e9aee14953f905cf1c7f2d /runtime/indent/testdir | |
| parent | ac83c6eba65e92d434f3245f518f869c94751e6b (diff) | |
| download | rneovim-2081504a331f2ca97922056f6b42b8d0e6c2e306.tar.gz rneovim-2081504a331f2ca97922056f6b42b8d0e6c2e306.tar.bz2 rneovim-2081504a331f2ca97922056f6b42b8d0e6c2e306.zip | |
vim-patch:942db23c9cb7
Update runtime files
https://github.com/vim/vim/commit/942db23c9cb7532d68048530d749eb84ca94d0cd
Omit po files.
Diffstat (limited to 'runtime/indent/testdir')
| -rw-r--r-- | runtime/indent/testdir/html.ok | 2 | ||||
| -rw-r--r-- | runtime/indent/testdir/vim.in | 15 | ||||
| -rw-r--r-- | runtime/indent/testdir/vim.ok | 15 |
3 files changed, 31 insertions, 1 deletions
diff --git a/runtime/indent/testdir/html.ok b/runtime/indent/testdir/html.ok index ba2fd3fc7d..c0dfc9dc72 100644 --- a/runtime/indent/testdir/html.ok +++ b/runtime/indent/testdir/html.ok @@ -19,7 +19,7 @@ div#d2 { color: green; } </div> <div - class="foo bar"> + class="foo bar"> text </div> diff --git a/runtime/indent/testdir/vim.in b/runtime/indent/testdir/vim.in index f652dbda79..699e4c243d 100644 --- a/runtime/indent/testdir/vim.in +++ b/runtime/indent/testdir/vim.in @@ -15,6 +15,21 @@ let x = [ \ ] endif +" TODO: add searchpair() to find matching { +"for x in [ +"{ +"key: 'value' +"}, +"] +"eval 0 +"endfor + +for x in [ +{key: 'value'}, +] +eval 0 +endfor + " END_INDENT " START_INDENT diff --git a/runtime/indent/testdir/vim.ok b/runtime/indent/testdir/vim.ok index b8592c18eb..f597d97e80 100644 --- a/runtime/indent/testdir/vim.ok +++ b/runtime/indent/testdir/vim.ok @@ -15,6 +15,21 @@ if 1 \ ] endif +" TODO: add searchpair() to find matching { +"for x in [ +"{ +"key: 'value' +"}, +"] +"eval 0 +"endfor + +for x in [ + {key: 'value'}, + ] + eval 0 +endfor + " END_INDENT " START_INDENT |