MATLAB-extension-for-vscode
MATLAB-extension-for-vscode copied to clipboard
Outline contents do not update after pasting new contents
Create a file, Foo.m with the following contents:
classdef Foo < handle
methods
function myFunc(~)
disp('myFunc')
end
end
end
This should cause the outline to update correctly.
From another environment, copy the following to the clipboard: x = 1;
In the VS Code editor, select all and paste this to overwrite the contents - the outline panel still displays the outline for Foo.