mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-10-29 02:23:52 +01:00
Use new interfaces SCI_FORMATRANGEFULL, SCI_GETTEXTRANGEFULL, SCI_FINDTEXTFULL from scintilla 5.2.3 Close #11734
49 lines
429 B
Matlab
49 lines
429 B
Matlab
% All the exaples here should yeild folding
|
|
|
|
classdef
|
|
% Some code
|
|
end
|
|
|
|
for
|
|
% Some code
|
|
end
|
|
|
|
function
|
|
% Some code
|
|
end
|
|
|
|
if
|
|
% Some code
|
|
elseif
|
|
% Some code
|
|
else
|
|
% Some code
|
|
end
|
|
|
|
parfor
|
|
% Some code
|
|
end
|
|
|
|
spmd
|
|
% Some code
|
|
end
|
|
|
|
switch
|
|
case
|
|
% Some code
|
|
case
|
|
% Some code
|
|
otherwise
|
|
% Some code
|
|
end
|
|
|
|
try
|
|
% Some code
|
|
catch
|
|
% Some code
|
|
end
|
|
|
|
while
|
|
% Some code
|
|
end
|