view runtime/indent/testdir/matlab.ok @ 16855:19162ff4eacd v8.1.1429

patch 8.1.1429: "pos" option of popup window not supported yet commit https://github.com/vim/vim/commit/ac1f1bc222b7de3cb2d3f1f2aa076f11c75e69de Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 30 21:24:26 2019 +0200 patch 8.1.1429: "pos" option of popup window not supported yet Problem: "pos" option of popup window not supported yet. Solution: Implement the option. Rename popup_getposition() to popup_getpos().
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 May 2019 21: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