diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-07-26 11:26:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-26 11:26:23 +0200 |
| commit | 4cbeedf57bf48a00890349f5b4624737f4f3fce6 (patch) | |
| tree | 6b14b6d3a8b5918109380925e9ef8b20519840ac /runtime/indent/testdir | |
| parent | 1a07044c1c828edda3e24828782665947fe68049 (diff) | |
| download | rneovim-4cbeedf57bf48a00890349f5b4624737f4f3fce6.tar.gz rneovim-4cbeedf57bf48a00890349f5b4624737f4f3fce6.tar.bz2 rneovim-4cbeedf57bf48a00890349f5b4624737f4f3fce6.zip | |
vim-patch:b529cfbd04c0 (#19501)
Update runtime files
https://github.com/vim/vim/commit/b529cfbd04c02e31cfa88f2c8d88b5ff532d4f7d
Diffstat (limited to 'runtime/indent/testdir')
| -rw-r--r-- | runtime/indent/testdir/bitbake.in | 19 | ||||
| -rw-r--r-- | runtime/indent/testdir/bitbake.ok | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/runtime/indent/testdir/bitbake.in b/runtime/indent/testdir/bitbake.in new file mode 100644 index 0000000000..afd19be182 --- /dev/null +++ b/runtime/indent/testdir/bitbake.in @@ -0,0 +1,19 @@ +# vim: set filetype=bitbake : + +# START_INDENT +FOO = " \ + bar \ + baz \ + qux \ + " + +do_configure() { +oe_conf +} + +python do_task() { +def foo(x): +if y: +print(x) +} +# END_INDENT diff --git a/runtime/indent/testdir/bitbake.ok b/runtime/indent/testdir/bitbake.ok new file mode 100644 index 0000000000..1bc5a18c6f --- /dev/null +++ b/runtime/indent/testdir/bitbake.ok @@ -0,0 +1,19 @@ +# vim: set filetype=bitbake : + +# START_INDENT +FOO = " \ + bar \ + baz \ + qux \ +" + +do_configure() { + oe_conf +} + +python do_task() { + def foo(x): + if y: + print(x) +} +# END_INDENT |