aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-07-29 02:09:53 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-07-29 20:50:07 +0200
commitab2cfd24e72f6cbcbc4fcea596eead189f690091 (patch)
tree989872343e3cd1882ddba20b7a269f79bea12d19 /runtime/indent
parent28a681d37d320ec66b7dc1039795faa8b4b895a1 (diff)
downloadrneovim-ab2cfd24e72f6cbcbc4fcea596eead189f690091.tar.gz
rneovim-ab2cfd24e72f6cbcbc4fcea596eead189f690091.tar.bz2
rneovim-ab2cfd24e72f6cbcbc4fcea596eead189f690091.zip
vim-patch:b730f0c7ba36
Update runtime files https://github.com/vim/vim/commit/b730f0c7ba36492d795f081b19bbcb85cdf0f50f
Diffstat (limited to 'runtime/indent')
-rw-r--r--runtime/indent/testdir/matlab.in17
-rw-r--r--runtime/indent/testdir/matlab.ok17
2 files changed, 34 insertions, 0 deletions
diff --git a/runtime/indent/testdir/matlab.in b/runtime/indent/testdir/matlab.in
new file mode 100644
index 0000000000..1a2bc83d4b
--- /dev/null
+++ b/runtime/indent/testdir/matlab.in
@@ -0,0 +1,17 @@
+% vim: set ft=matlab sw=4 :
+
+% START_INDENT
+if true
+disp foo
+elseif false
+disp bar
+end
+% END_INDENT
+
+% START_INDENT
+try
+statements
+catch exception
+statements
+end
+% END_INDENT
diff --git a/runtime/indent/testdir/matlab.ok b/runtime/indent/testdir/matlab.ok
new file mode 100644
index 0000000000..88e1d86b06
--- /dev/null
+++ b/runtime/indent/testdir/matlab.ok
@@ -0,0 +1,17 @@
+% vim: set ft=matlab sw=4 :
+
+% START_INDENT
+if true
+ disp foo
+elseif false
+ disp bar
+end
+% END_INDENT
+
+% START_INDENT
+try
+ statements
+catch exception
+ statements
+end
+% END_INDENT