view runtime/indent/testdir/matlab.ok @ 17393:372f2eaa544a v8.1.1695

patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal commit https://github.com/vim/vim/commit/f49a6922596ea88856da802fe33df953b7d77ecb Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 15 20:37:05 2019 +0200 patch 8.1.1695: Windows 10: crash when cursor is at bottom of terminal Problem: Windows 10: crash when cursor is at bottom of terminal. Solution: Position the cursor before resizing. (Yasuhiro Matsumoto, closes #4679)
author Bram Moolenaar <Bram@vim.org>
date Mon, 15 Jul 2019 20:45:06 +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