Mercurial > vim
view runtime/indent/testdir/matlab.ok @ 26135:7922e1972d58 v8.2.3600
patch 8.2.3600: filetype test fails
Commit: https://github.com/vim/vim/commit/314b773abbb9b1ce0020d83482c6daf7ad6a42a2
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 16 11:53:13 2021 +0000
patch 8.2.3600: filetype test fails
Problem: Filetype test fails.
Solution: Add missint change.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 16 Nov 2021 13:00:05 +0100 |
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