From b36e519ea731d871ec496630c69d486c47f129e8 Mon Sep 17 00:00:00 2001 From: Benoit Pasquier <4486578+briochemc@users.noreply.github.com> Date: Tue, 28 Apr 2020 12:39:47 +1000 Subject: [PATCH] Update matlab.vim This PR removes `do` from the syntax highlighting for MATLAB because I don't think `do` is a reserved keyword. --- syntax/matlab.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/matlab.vim b/syntax/matlab.vim index 3cf78a4..4b7945b 100644 --- a/syntax/matlab.vim +++ b/syntax/matlab.vim @@ -16,7 +16,7 @@ endif syn keyword matlabStatement return function syn keyword matlabConditional switch case else elseif end if otherwise break continue -syn keyword matlabRepeat do for while +syn keyword matlabRepeat for while syn keyword matlabStorageClass classdef methods properties events persistent global syn keyword matlabExceptions try catch rethrow throw