diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-10-16 22:35:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-10-16 22:35:02 +0200 |
commit | 2e693a88b24dc6b12883fad78ff2cb9cd4469c98 (patch) | |
tree | 51532c78977a6ef8307d2c290a5627d7fc32753c /runtime/indent/testdir | |
parent | 4f2f61a014e80217a2d6ac476c8f94e250a3d0ff (diff) | |
download | vim-git-2e693a88b24dc6b12883fad78ff2cb9cd4469c98.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/indent/testdir')
-rw-r--r-- | runtime/indent/testdir/yaml.in | 14 | ||||
-rw-r--r-- | runtime/indent/testdir/yaml.ok | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/runtime/indent/testdir/yaml.in b/runtime/indent/testdir/yaml.in new file mode 100644 index 000000000..e3d77e254 --- /dev/null +++ b/runtime/indent/testdir/yaml.in @@ -0,0 +1,14 @@ +# vim: set ft=yaml sw=2 et : + +# START_INDENT +map1: +sub1: +- list item +map2: +- another list +# END_INDENT + +# START_INDENT +map: &anchor +map: val +# END_INDENT diff --git a/runtime/indent/testdir/yaml.ok b/runtime/indent/testdir/yaml.ok new file mode 100644 index 000000000..b97b2e589 --- /dev/null +++ b/runtime/indent/testdir/yaml.ok @@ -0,0 +1,14 @@ +# vim: set ft=yaml sw=2 et : + +# START_INDENT +map1: + sub1: + - list item +map2: + - another list +# END_INDENT + +# START_INDENT +map: &anchor +map: val +# END_INDENT |