aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/testdir
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-07-26 11:26:23 +0200
committerGitHub <noreply@github.com>2022-07-26 11:26:23 +0200
commit4cbeedf57bf48a00890349f5b4624737f4f3fce6 (patch)
tree6b14b6d3a8b5918109380925e9ef8b20519840ac /runtime/indent/testdir
parent1a07044c1c828edda3e24828782665947fe68049 (diff)
downloadrneovim-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.in19
-rw-r--r--runtime/indent/testdir/bitbake.ok19
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