MATLAB-extension-for-vscode icon indicating copy to clipboard operation
MATLAB-extension-for-vscode copied to clipboard

Outline contents do not update after pasting new contents

Open dklilley opened this issue 2 years ago • 0 comments

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.

dklilley avatar Jun 27 '23 14:06 dklilley