view runtime/indent/testdir/matlab.ok @ 18420:3a3efaaa05c5 v8.1.2204

patch 8.1.2204: crash on exit when closing terminals Commit: https://github.com/vim/vim/commit/8f7ab4bd1e66fd532bdef6559502d961f03b54d8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 23 23:16:45 2019 +0200 patch 8.1.2204: crash on exit when closing terminals Problem: Crash on exit when closing terminals. (Corey Hickey) Solution: Actually wait for the job to stop. (closes https://github.com/vim/vim/issues/5100)
author Bram Moolenaar <Bram@vim.org>
date Wed, 23 Oct 2019 23:30:04 +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