Open Titas22 opened 8 months ago
When using links (<a href=""> </a>) in VSCode using disp() or fprintf() it does not get printed as a clickable link.
<a href=""> </a>
disp()
fprintf()
Example:
disp('Open <a href="matlab: opentoline(which(''edit.m''),200)">edit.m line 200</a>!')
Output in VSCode:
While in MATLAB:
This is also the case with the links used in warning() and error()
warning()
error()
Thanks for the feedback! This is definitely something we will consider supporting in a future release.
When using links (
<a href=""> </a>
) in VSCode usingdisp()
orfprintf()
it does not get printed as a clickable link.Example:
Output in VSCode:
While in MATLAB:
This is also the case with the links used in
warning()
anderror()