diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-07-29 02:42:51 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-07-29 20:50:07 +0200 |
commit | aa680f6acb84b876584cbe5c958d50c692154c75 (patch) | |
tree | c034205a78a1b272e8b381c001a03c9a9983de04 /runtime/indent/testdir/matlab.ok | |
parent | c8f34a9a3efa6e260e97c9c064f7e6cb8a099aa9 (diff) | |
download | rneovim-aa680f6acb84b876584cbe5c958d50c692154c75.tar.gz rneovim-aa680f6acb84b876584cbe5c958d50c692154c75.tar.bz2 rneovim-aa680f6acb84b876584cbe5c958d50c692154c75.zip |
vim-patch:9d87a37ee9d8
Update runtime files.
https://github.com/vim/vim/commit/9d87a37ee9d87f5bdbc779bc940d5f1e6f055d0a
Diffstat (limited to 'runtime/indent/testdir/matlab.ok')
-rw-r--r-- | runtime/indent/testdir/matlab.ok | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/runtime/indent/testdir/matlab.ok b/runtime/indent/testdir/matlab.ok index 88e1d86b06..b1112263b2 100644 --- a/runtime/indent/testdir/matlab.ok +++ b/runtime/indent/testdir/matlab.ok @@ -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 |