view runtime/indent/testdir/matlab.in @ 16648:a7f06505ad39 v8.1.1326

patch 8.1.1326: no test for listener with partial commit https://github.com/vim/vim/commit/8aad88d8de256e58f04054eb7230c9613e26502f Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 12 13:53:50 2019 +0200 patch 8.1.1326: no test for listener with partial Problem: No test for listener with partial. Solution: Add a test. Add example to help.
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 May 2019 14:00:07 +0200
parents 8b334e4cb97f
children a0e0f0256d0b
line wrap: on
line source

% 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

% 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