Mercurial > vim
view runtime/indent/testdir/matlab.ok @ 18810:44b855153d8e v8.1.2393
patch 8.1.2393: using old C style comments
Commit: https://github.com/vim/vim/commit/0f8737355d291679659579a48db1861b88970293
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Dec 5 20:28:46 2019 +0100
patch 8.1.2393: using old C style comments
Problem: Using old C style comments.
Solution: Use // comments where appropriate.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 05 Dec 2019 20:30:04 +0100 |
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