diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-18 21:41:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-18 21:41:50 +0100 |
commit | 9d87a37ee9d87f5bdbc779bc940d5f1e6f055d0a (patch) | |
tree | f569453cf21f8a14b1a90e6e4edeeb41fe624b70 /runtime/indent/testdir/matlab.in | |
parent | a86187b9cd529754ad85cd621169876317eb3a69 (diff) | |
download | vim-git-9d87a37ee9d87f5bdbc779bc940d5f1e6f055d0a.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/indent/testdir/matlab.in')
-rw-r--r-- | runtime/indent/testdir/matlab.in | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/runtime/indent/testdir/matlab.in b/runtime/indent/testdir/matlab.in index 1a2bc83d4..5bba1a56d 100644 --- a/runtime/indent/testdir/matlab.in +++ b/runtime/indent/testdir/matlab.in @@ -15,3 +15,66 @@ catch exception statements end % END_INDENT + +% START_INDENT +if true, ... +if true +disp hello +end +end +% END_INDENT + +% START_INDENT +switch a +case expr +if true, foo; end +disp hello +otherwise +disp bar +end +% END_INDENT + +% START_INDENT +if true +A(1:end - 1) +disp foo +end +% END_INDENT + +% START_INDENT +A = [{ +} +] ... +disp foo +disp bar +% END_INDENT + +% START_INDENT +% INDENT_EXE let b:MATLAB_function_indent = 0 +function foo +disp foo +function nested +disp bar +end +end +% END_INDENT + +% START_INDENT +% INDENT_EXE let b:MATLAB_function_indent = 1 +function foo +disp foo +function nested +disp bar +end +end +% END_INDENT + +% START_INDENT +% INDENT_EXE let b:MATLAB_function_indent = 2 +function foo +disp foo +function nested +disp bar +end +end +% END_INDENT |