view runtime/indent/testdir/matlab.in @ 25719:154663508d9b v8.2.3395

patch 8.2.3395: Vim9: expression breakpoint not checked in :def function Commit: https://github.com/vim/vim/commit/26a4484da20039b61f18d3565a4b4339c4d1f7e3 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 2 18:49:06 2021 +0200 patch 8.2.3395: Vim9: expression breakpoint not checked in :def function Problem: Vim9: expression breakpoint not checked in :def function. Solution: Always compile a function for debugging if there is an expression breakpoint. (closes #8803)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Sep 2021 19:00:04 +0200
parents a0e0f0256d0b
children
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)
C{1:end - 1}
disp foo
end
% END_INDENT

% START_INDENT
A = [{
}
] ...
disp foo
disp bar
% END_INDENT

% START_INDENT
if true
% end
%% end
disp foo
end
% 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