MATLAB-extension-for-vscode
MATLAB-extension-for-vscode copied to clipboard
Auto-complete inserts extra quote for strings
Describe the bug When auto-completing a string in a function call, the auto-complete inserts an extra quote at the end, resulting in a syntax error.
To Reproduce Steps to reproduce the behavior:
- In a MATLAB file, type
plot(x, y, "Col
- with VS Code's paren- and quote-completions, this will result in the following being on the line:plot(x, y, "Col")
- There should be a tab completion for
"Color"
showing - select it - This will result in an extra quote being inserted:
plot(x, y, "Color"")